|
13 | 13 | <PrivateAssets>all</PrivateAssets> |
14 | 14 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
15 | 15 | </PackageReference> |
16 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" /> |
| 16 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" Condition="'$(TargetFramework)' == 'netcoreapp2.1'" /> |
| 17 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" Condition="'$(TargetFramework)' != 'netcoreapp2.1'" /> |
17 | 18 | <PackageReference Include="Shouldly" Version="4.1.0" /> |
18 | 19 | <PackageReference Include="xunit" Version="2.4.2" /> |
19 | 20 | <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" Condition="'$(TargetFramework)' == 'netcoreapp2.1'" /> |
20 | 21 | <PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" Condition="'$(TargetFramework)' != 'netcoreapp2.1'" /> |
21 | 22 | <PackageReference Include="Moq" Version="4.18.2" /> |
22 | 23 | <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="2.1.*" Condition="'$(TargetFramework)' == 'netcoreapp2.1' OR '$(TargetFramework)' == 'net48'" /> |
23 | 24 | <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.*" Condition="'$(TargetFramework)' == 'netcoreapp3.1'" /> |
24 | | - <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.*" Condition="'$(TargetFramework)' == 'net5'" /> |
25 | | - <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.*" Condition="'$(TargetFramework)' == 'net6'" /> |
| 25 | + <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.*" Condition="'$(TargetFramework)' == 'net5.0'" /> |
| 26 | + <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.*" Condition="'$(TargetFramework)' == 'net6.0'" /> |
| 27 | + <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.*" Condition="'$(TargetFramework)' == 'net7.0'" /> |
26 | 28 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="2.1.*" Condition="'$(TargetFramework)' == 'netcoreapp2.1' OR '$(TargetFramework)' == 'net48'" /> |
27 | 29 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.*" Condition="'$(TargetFramework)' == 'netcoreapp3.1'" /> |
28 | | - <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.*" Condition="'$(TargetFramework)' == 'net5'" /> |
29 | | - <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.*" Condition="'$(TargetFramework)' == 'net6'" /> |
| 30 | + <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.*" Condition="'$(TargetFramework)' == 'net5.0'" /> |
| 31 | + <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.*" Condition="'$(TargetFramework)' == 'net6.0'" /> |
| 32 | + <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.*" Condition="'$(TargetFramework)' == 'net7.0'" /> |
30 | 33 | </ItemGroup> |
31 | 34 |
|
32 | 35 | <ItemGroup> |
|
0 commit comments