|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net8.0;net7.0;net6.0;net5.0;netcoreapp3.1;netcoreapp3.0;netcoreapp2.1;net461</TargetFrameworks> |
| 4 | + <TargetFrameworks>net9.0;net8.0;net7.0;net6.0;net5.0;netcoreapp3.1;netcoreapp3.0;netcoreapp2.1;net461</TargetFrameworks> |
5 | 5 | <ImplicitUsings>enable</ImplicitUsings> |
6 | 6 | <Nullable>enable</Nullable> |
7 | 7 | <IsPackable>false</IsPackable> |
|
21 | 21 | </PropertyGroup> |
22 | 22 |
|
23 | 23 | <ItemGroup> |
24 | | - <PackageReference Include="xunit" Version="2.6.2" /> |
25 | | - <PackageReference Include="coverlet.collector" Version="6.0.0"> |
| 24 | + <PackageReference Include="xunit" Version="2.9.2" /> |
| 25 | + <PackageReference Include="coverlet.collector" Version="6.0.3"> |
26 | 26 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
27 | 27 | <PrivateAssets>all</PrivateAssets> |
28 | 28 | </PackageReference> |
29 | 29 | </ItemGroup> |
30 | 30 |
|
| 31 | + <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'"> |
| 32 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> |
| 33 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.0.0"> |
| 34 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 35 | + <PrivateAssets>all</PrivateAssets> |
| 36 | + </PackageReference> |
| 37 | + <PackageReference Include="Microsoft.AspNetCore.TestHost" Version="9.0.0" /> |
| 38 | + </ItemGroup> |
| 39 | + |
31 | 40 | <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
32 | 41 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> |
33 | | - <PackageReference Include="xunit.runner.visualstudio" Version="2.5.4"> |
| 42 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.0.0"> |
34 | 43 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
35 | 44 | <PrivateAssets>all</PrivateAssets> |
36 | 45 | </PackageReference> |
37 | | - <PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.0" /> |
| 46 | + <PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.11" /> |
38 | 47 | </ItemGroup> |
39 | 48 |
|
40 | 49 | <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> |
41 | 50 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> |
42 | | - <PackageReference Include="xunit.runner.visualstudio" Version="2.5.4"> |
| 51 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.0.0"> |
43 | 52 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
44 | 53 | <PrivateAssets>all</PrivateAssets> |
45 | 54 | </PackageReference> |
46 | | - <PackageReference Include="Microsoft.AspNetCore.TestHost" Version="7.0.14" /> |
| 55 | + <PackageReference Include="Microsoft.AspNetCore.TestHost" Version="7.0.20" /> |
47 | 56 | </ItemGroup> |
48 | 57 |
|
49 | 58 | <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> |
50 | 59 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> |
51 | | - <PackageReference Include="xunit.runner.visualstudio" Version="2.5.4"> |
| 60 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.0.0"> |
52 | 61 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
53 | 62 | <PrivateAssets>all</PrivateAssets> |
54 | 63 | </PackageReference> |
55 | | - <PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.25" /> |
| 64 | + <PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.36" /> |
56 | 65 | </ItemGroup> |
57 | 66 |
|
58 | 67 | <ItemGroup Condition="'$(TargetFramework)' == 'net5.0'"> |
|
0 commit comments