MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetFilesToDeploy

Method GetFilesToDeploy

Source/Engine/Content/Content.Build.cs:35–44  ·  view source on GitHub ↗

(List<string> files)

Source from the content-addressed store, hash-verified

33
34 /// <inheritdoc />
35 public override void GetFilesToDeploy(List<string> files)
36 {
37 files.AddRange(Directory.GetFiles(FolderPath, "*.h", SearchOption.TopDirectoryOnly));
38 files.AddRange(Directory.GetFiles(Path.Combine(FolderPath, "Assets"), "*.h", SearchOption.TopDirectoryOnly));
39 files.AddRange(Directory.GetFiles(Path.Combine(FolderPath, "Cache"), "*.h", SearchOption.TopDirectoryOnly));
40 files.AddRange(Directory.GetFiles(Path.Combine(FolderPath, "Factories"), "*.h", SearchOption.TopDirectoryOnly));
41 files.AddRange(Directory.GetFiles(Path.Combine(FolderPath, "Storage"), "*.h", SearchOption.TopDirectoryOnly));
42 files.Add(Path.Combine(FolderPath, "Upgraders/BinaryAssetUpgrader.h"));
43 files.Add(Path.Combine(FolderPath, "Upgraders/IAssetUpgrader.h"));
44 }
45}

Callers

nothing calls this directly

Calls 3

AddRangeMethod · 0.45
GetFilesMethod · 0.45
AddMethod · 0.45

Tested by

no test coverage detected