|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>netcoreapp2.2</TargetFramework> |
5 | | - |
| 4 | + <TargetFrameworks>net46;netcoreapp2.1;netcoreapp3.1</TargetFrameworks> |
6 | 5 | <IsPackable>false</IsPackable> |
7 | 6 | </PropertyGroup> |
8 | 7 |
|
9 | 8 | <ItemGroup> |
10 | | - <PackageReference Include="coverlet.msbuild" Version="3.1.0" /> |
11 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" /> |
12 | | - <PackageReference Include="Selenium.WebDriver" Version="3.141.0" /> |
13 | | - <PackageReference Include="xunit" Version="2.4.1" /> |
14 | | - <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" /> |
| 9 | + <PackageReference Include="coverlet.msbuild" Version="3.1.0"/> |
| 10 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0"/> |
| 11 | + <PackageReference Include="Selenium.WebDriver" Version="3.141.0"/> |
| 12 | + <PackageReference Include="xunit" Version="2.4.1"/> |
| 13 | + <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3"/> |
15 | 14 | </ItemGroup> |
16 | 15 |
|
17 | 16 | <ItemGroup> |
18 | | - <ProjectReference Include="..\WebDriverManager\WebDriverManager.csproj" /> |
| 17 | + <ProjectReference Include="..\WebDriverManager\WebDriverManager.csproj"/> |
19 | 18 | </ItemGroup> |
20 | 19 |
|
21 | 20 | <ItemGroup> |
22 | | - <None Remove="Assets\file.txt" /> |
| 21 | + <None Remove="Assets\file.txt"/> |
23 | 22 | <Content Include="Assets\file.txt"> |
24 | 23 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
25 | 24 | </Content> |
26 | | - <None Remove="Assets\removable.zip" /> |
| 25 | + <None Remove="Assets\removable.zip"/> |
27 | 26 | <Content Include="Assets\removable.zip"> |
28 | 27 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
29 | 28 | </Content> |
30 | | - <None Remove="Assets\unzipable.zip" /> |
| 29 | + <None Remove="Assets\unzipable.zip"/> |
31 | 30 | <Content Include="Assets\unzipable.zip"> |
32 | 31 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
33 | 32 | </Content> |
34 | 33 | </ItemGroup> |
35 | 34 |
|
36 | 35 | <ItemGroup> |
37 | | - <None Update="Assets\gzip.tar.gz"> |
38 | | - <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
39 | | - </None> |
| 36 | + <None Update="Assets\gzip.tar.gz"> |
| 37 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 38 | + </None> |
40 | 39 | </ItemGroup> |
41 | 40 |
|
| 41 | + <PropertyGroup> |
| 42 | + <VSTestLogger>trx%3bLogFileName=Results$(TargetFramework).trx</VSTestLogger> |
| 43 | + </PropertyGroup> |
42 | 44 | </Project> |
0 commit comments