This commit is contained in:
Vladimir Safonkin 2021-02-03 16:18:47 +03:00
parent 347456b934
commit d33a835564
2 changed files with 6 additions and 6 deletions

View File

@ -100,17 +100,17 @@ jobs:
- name: Clear installed dotnet versions - name: Clear installed dotnet versions
shell: pwsh shell: pwsh
run: __tests__/clear-installed-dotnet.ps1 ${{ runner.os }} run: __tests__/clear-installed-dotnet.ps1 ${{ runner.os }}
- name: Setup dotnet 5.0.* - name: Setup dotnet 3.1.*
uses: ./ uses: ./
with: with:
dotnet-version: 5.0.* dotnet-version: 3.1.*
- name: Verify dotnet - name: Verify dotnet
if: runner.os != 'windows' if: runner.os != 'windows'
run: __tests__/verify-dotnet.sh 5.0 run: __tests__/verify-dotnet.sh 3.1
- name: Verify dotnet (Windows) - name: Verify dotnet (Windows)
if: runner.os == 'windows' if: runner.os == 'windows'
run: __tests__/verify-dotnet.ps1 5.0 run: __tests__/verify-dotnet.ps1 3.1
test-proxy: test-proxy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>netcoreapp3.1;netcoreapp2.2;netcoreapp5.0</TargetFrameworks> <TargetFrameworks>netcoreapp3.1;netcoreapp2.2</TargetFrameworks>
<RootNamespace>sample_csproj</RootNamespace> <RootNamespace>sample_csproj</RootNamespace>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>