Compare commits

..

3 Commits

Author SHA1 Message Date
cce6e00960 - Merge 2024-07-12 23:11:47 +02:00
1096597161 - Fixed bug in builder when no content files exist 2024-07-12 23:10:44 +02:00
d45f7c3b8c - Fixed bug in builder when no content files exist 2024-07-12 23:08:52 +02:00
2 changed files with 54 additions and 50 deletions

View File

@ -37,12 +37,15 @@ public void Run(BuildArgs args)
CollectAssetFiles(absContentPath, absContentPath, ref contentFiles); CollectAssetFiles(absContentPath, absContentPath, ref contentFiles);
} }
if (contentFiles.Count > 0)
{
string importPath = $"{args.ProjectPath}/{PathUtil.ImportFolderName}"; string importPath = $"{args.ProjectPath}/{PathUtil.ImportFolderName}";
ParallelOptions parallelOptions = new ParallelOptions ParallelOptions parallelOptions = new ParallelOptions
{ {
MaxDegreeOfParallelism = contentFiles.Count MaxDegreeOfParallelism = contentFiles.Count
}; };
Parallel.ForEach(contentFiles, parallelOptions, relativeFile => Parallel.ForEach(contentFiles, parallelOptions, relativeFile =>
{ {
try try
@ -89,13 +92,14 @@ public void Run(BuildArgs args)
Console.Error.WriteLine($"Import error on asset '{relativeFile}': {e.Message}"); Console.Error.WriteLine($"Import error on asset '{relativeFile}': {e.Message}");
} }
}); });
}
Console.WriteLine($"Build content completed in {stopwatch.Elapsed.TotalSeconds:F2} seconds"); Console.WriteLine($"Build content completed in {stopwatch.Elapsed.TotalSeconds:F2} seconds");
} }
private void CopyLibs(string projectPath) private void CopyLibs(string projectPath)
{ {
string libDir = $"{Directory.GetCurrentDirectory()}/../../Native/"; string libDir = $"{AppDomain.CurrentDomain.BaseDirectory}/../../Native/";
if (OperatingSystem.IsWindows()) if (OperatingSystem.IsWindows())
{ {
libDir += "x64"; libDir += "x64";