Dotnet core 3.1.1 on Windows

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:

https://travis-ci.org/abulhasanlakhani/DataImporterApi

1 Like