Use .NET Core 3.1 - 5.0 not yet available

Former-commit-id: d8a09a3574
This commit is contained in:
Malte Rosenbjerg 2020-12-06 00:43:05 +01:00
parent 74b4e5b421
commit 273d7232cb
3 changed files with 1 additions and 5 deletions

View file

@ -17,7 +17,5 @@ jobs:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Prepare FFMpeg - name: Prepare FFMpeg
run: sudo apt-get update && sudo apt-get install -y ffmpeg run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Setup .NET Core
run: dotnet --version
- name: Test with dotnet - name: Test with dotnet
run: dotnet test --logger GitHubActions run: dotnet test --logger GitHubActions

View file

@ -8,8 +8,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Setup .NET Core
run: dotnet --version
- name: Build solution - name: Build solution
run: dotnet build --output build run: dotnet build --output build
- name: Publish NuGet package - name: Publish NuGet package

View file

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net5.0</TargetFramework> <TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>