Use NET 5.0 in pipelines

This commit is contained in:
Malte Rosenbjerg 2020-12-06 00:38:20 +01:00
parent 224126ce75
commit f6e4e31c0a
2 changed files with 2 additions and 2 deletions

View file

@ -20,6 +20,6 @@ jobs:
- name: Setup .NET Core - name: Setup .NET Core
uses: actions/setup-dotnet@v1 uses: actions/setup-dotnet@v1
with: with:
dotnet-version: 3.1.101 dotnet-version: 5.0
- name: Test with dotnet - name: Test with dotnet
run: dotnet test --logger GitHubActions run: dotnet test --logger GitHubActions

View file

@ -11,7 +11,7 @@ jobs:
- name: Setup .NET Core - name: Setup .NET Core
uses: actions/setup-dotnet@v1 uses: actions/setup-dotnet@v1
with: with:
dotnet-version: 3.1 dotnet-version: 5.0
- name: Build solution - name: Build solution
run: dotnet build --output build run: dotnet build --output build
- name: Publish NuGet package - name: Publish NuGet package