| 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 | } |