pull/165/head
Vladimir Safonkin 5 years ago
parent 347456b934
commit d33a835564

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

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

Loading…
Cancel
Save