Skip to content

Commit

Permalink
switch tests to run on .net core 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostousov committed Jan 14, 2019
1 parent 7953f5f commit 953a8e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
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
2 changes: 1 addition & 1 deletion GroBuf.Tests/GroBuf.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<IsPackable>false</IsPackable>
<TargetFrameworks>netcoreapp2.0;net45</TargetFrameworks>
<TargetFrameworks>netcoreapp2.2;net45</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "2.1.400"
"version": "2.2.100"
}
}

0 comments on commit 953a8e4

Please sign in to comment.