Skip to content

Commit

Permalink
Issue with SDK install
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisPulman committed Sep 13, 2023
1 parent cc724d0 commit c6f3901
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ partial class Build : NukeBuild

Target Clean => _ => _
.Before(Restore)
.Executes(async () =>
.Executes(() =>
{
if (IsLocalBuild)
if (!IsLocalBuild)
{
return;
}
PackagesDirectory.CreateOrCleanDirectory();
await this.InstallDotNetSdk("3.1.x", "5.x.x", "6.x.x", "7.x.x");
////await this.InstallDotNetSdk("3.1.x", "5.x.x", "6.x.x", "7.x.x");
});

Target Restore => _ => _
Expand Down
3 changes: 1 addition & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"sdk": {
"version": "7.0",
"rollForward": "latestMinor"
"version": "7.0.308"
}
}

0 comments on commit c6f3901

Please sign in to comment.