Force CI to build with a specific version of .NET Core

This commit is contained in:
Steve Sanderson 2018-02-27 18:52:35 +00:00
parent de2bfe5162
commit 41fa69f665
2 changed files with 8 additions and 0 deletions

3
build/aspnetci-build.ps1 Normal file
View File

@ -0,0 +1,3 @@
Invoke-WebRequest -useb 'https://dot.net/v1/dotnet-install.ps1' -OutFile .\build\dotnet-install.ps1
.\build\dotnet-install.ps1 -channel Current -version 2.1.3 -InstallDir dotnetsdk
dotnet pack Blazor.sln

5
global.json Normal file
View File

@ -0,0 +1,5 @@
{
"sdk": {
"version": "2.1.3"
}
}