This commit is contained in:
nub31
2025-06-14 18:13:24 +02:00
parent 2a5a1dd4ce
commit 4a3de81d97
2 changed files with 87 additions and 82 deletions

View File

@@ -110,8 +110,8 @@ foreach (var resourceName in runtimeResources)
await using var stream = assembly.GetManifestResourceStream(resourceName);
if (stream == null)
{
Console.Error.WriteLine($"Warning: Could not load embedded resource {resourceName}");
continue;
Console.Error.WriteLine($"Could not load embedded resource {resourceName}");
return 1;
}
using var reader = new StreamReader(stream);