Skip to content

Commit

Permalink
Makes a build more stable
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayPianikov committed Sep 13, 2024
1 parent 591f862 commit adfb4d1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,10 @@
.WithShortName("Installing template");

installTemplates.WithShortName(installTemplates.ShortName).Run().EnsureSuccess();
await Task.WhenAll(
frameworks.Select(framework => CheckCompatibilityAsync(framework, packageVersion, defaultNuGetSource, outputDir)));
foreach (var framework in frameworks)
{
await CheckCompatibilityAsync(framework, packageVersion, defaultNuGetSource, outputDir);
}

if (!string.IsNullOrWhiteSpace(apiKey) && packageVersion.Release != "dev" && packageVersion.Release != "dev")
{
Expand Down

0 comments on commit adfb4d1

Please sign in to comment.