How do I support a .Net Core 3.1 project with Travis CI?
I just upgraded my project to .Net Core 3.1 and it just works for me. Here is how my config looks:
language: csharp
mono: none
dist: xenial
dotnet: 3.1
install:
- dotnet restore
script:
- dotnet build
- dotnet test Tests/DataImporter.Tests/DataImporter.Tests.csproj
This is the url of my repo:
1 Like