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