-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch tests to run on .net core 2.2
- Loading branch information
1 parent
7953f5f
commit 953a8e4
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
dist: trusty | ||
dist: xenial | ||
sudo: false | ||
language: csharp | ||
dotnet: 2.1.400 | ||
dotnet: 2.2.100 | ||
mono: none | ||
script: | ||
- git fetch --unshallow # in order to make Nerdbank.GitVersioning.Tasks.GetBuildVersion work | ||
- dotnet restore ./GroBuf.sln --verbosity m | ||
- dotnet build --configuration Release --framework netstandard2.0 ./GroBuf/GroBuf.csproj | ||
- dotnet build --configuration Release --framework netcoreapp2.0 ./GroBuf.Tests/GroBuf.Tests.csproj | ||
- dotnet test --no-build --configuration Release --framework netcoreapp2.0 --filter TestCategory!=LongRunning ./GroBuf.Tests/GroBuf.Tests.csproj | ||
- dotnet build --configuration Release --framework netcoreapp2.2 ./GroBuf.Tests/GroBuf.Tests.csproj | ||
- dotnet test --no-build --configuration Release --framework netcoreapp2.2 --filter TestCategory!=LongRunning ./GroBuf.Tests/GroBuf.Tests.csproj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"sdk": { | ||
"version": "2.1.400" | ||
"version": "2.2.100" | ||
} | ||
} |