Change e2e test

This commit is contained in:
IvanZosimov 2022-08-18 13:41:43 +02:00
parent d4080b9957
commit dbce00824d
2 changed files with 1 additions and 11 deletions

View File

@ -230,15 +230,6 @@ jobs:
- name: Clear toolcache
shell: pwsh
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
- name: Setup dotnet '2.2'
uses: ./
with:
dotnet-version: '2.2'
- name: Setup dotnet '3.1'
uses: ./
with:
dotnet-version: '3.1'
- name: Setup dotnet 7.0 with preview quality
uses: ./
@ -251,7 +242,6 @@ jobs:
$version = & dotnet --version
Write-Host "Installed version: $version"
if (-not $version.Contains("preview")) { throw "Unexpected version" }
__tests__/verify-dotnet.ps1 $version
test-proxy:
runs-on: ubuntu-latest

View File

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