Skip to content

Commit adfb4d1

Browse files
Makes a build more stable
1 parent 591f862 commit adfb4d1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Build/Program.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,10 @@
215215
.WithShortName("Installing template");
216216

217217
installTemplates.WithShortName(installTemplates.ShortName).Run().EnsureSuccess();
218-
await Task.WhenAll(
219-
frameworks.Select(framework => CheckCompatibilityAsync(framework, packageVersion, defaultNuGetSource, outputDir)));
218+
foreach (var framework in frameworks)
219+
{
220+
await CheckCompatibilityAsync(framework, packageVersion, defaultNuGetSource, outputDir);
221+
}
220222

221223
if (!string.IsNullOrWhiteSpace(apiKey) && packageVersion.Release != "dev" && packageVersion.Release != "dev")
222224
{

0 commit comments

Comments
 (0)