Change e2e tests

This commit is contained in:
IvanZosimov 2022-08-18 13:33:13 +02:00
parent 8e5920fc6a
commit d4080b9957
2 changed files with 13 additions and 3 deletions

View File

@ -156,11 +156,11 @@ jobs:
uses: ./
with:
dotnet-version: 3.1.x
- name: Setup dotnet 2.2.x
- name: Setup dotnet 2.2.X
uses: ./
with:
dotnet-version: 2.2.X
- name: Setup dotnet 2.2.x
- name: Setup dotnet 3.0.*
uses: ./
with:
dotnet-version: 3.0.*
@ -230,6 +230,16 @@ 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: ./
with:

View File

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