Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktor Hofer <viktor.hofer@microsoft.com>2020-05-06 14:53:21 +0300
committerGitHub <noreply@github.com>2020-05-06 14:53:21 +0300
commit000046f6c8b248788d00a56d1d1137ec01eda065 (patch)
treed4ea71e60fd07c226c6ffa8fc476227474815e1f /eng/build.ps1
parentf4acc94752e6115b35adb7cfa5b520cfae0ad85b (diff)
Change netcoreapp5.0 to net5.0 (#35176)
* Change netcoreapp5.0 to net5.0 * Remove tfm downgrades * Rename S.R.CS.Unsfae include folder
Diffstat (limited to 'eng/build.ps1')
-rw-r--r--eng/build.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/eng/build.ps1 b/eng/build.ps1
index 1298a9ba6a2..09d8164516a 100644
--- a/eng/build.ps1
+++ b/eng/build.ps1
@@ -43,7 +43,7 @@ function Get-Help() {
Write-Host ""
Write-Host "Libraries settings:"
- Write-Host " -framework Build framework: netcoreapp5.0 or net472 (short: -f)"
+ Write-Host " -framework Build framework: net5.0 or net472 (short: -f)"
Write-Host " -coverage Collect code coverage when testing"
Write-Host " -testscope Scope tests, allowed values: innerloop, outerloop, all"
Write-Host " -testnobuild Skip building tests when invoking -test"
@@ -84,7 +84,7 @@ if ($vs) {
$archTestHost = if ($arch) { $arch } else { "x64" }
# This tells .NET Core to use the same dotnet.exe that build scripts use
- $env:DOTNET_ROOT="$PSScriptRoot\..\artifacts\bin\testhost\netcoreapp5.0-Windows_NT-$configuration-$archTestHost";
+ $env:DOTNET_ROOT="$PSScriptRoot\..\artifacts\bin\testhost\net5.0-Windows_NT-$configuration-$archTestHost";
$env:DEVPATH="$PSScriptRoot\..\artifacts\bin\testhost\net472-Windows_NT-$configuration-$archTestHost";
}