We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e71b33 commit 80064f8Copy full SHA for 80064f8
Build.ps1
@@ -1,5 +1,7 @@
1
echo "build: Build started"
2
3
+$env:Path = "$pwd/.dotnetcli;$env:Path"
4
+
5
Push-Location $PSScriptRoot
6
7
if(Test-Path .\artifacts) {
Setup.ps1
@@ -7,5 +7,3 @@ New-Item -ItemType Directory -Force "./build/" | Out-Null
Invoke-WebRequest "https://dot.net/v1/dotnet-install.ps1" -OutFile "./build/installcli.ps1"
8
& ./build/installcli.ps1 -InstallDir "$pwd/.dotnetcli" -NoPath -Version $RequiredDotnetVersion
9
if ($LASTEXITCODE) { throw ".NET install failed" }
10
-
11
-$env:Path = "$pwd/.dotnetcli;$env:Path"
0 commit comments