Skip to content

Commit 64388a8

Browse files
fix : (notorioustest.csproj) Microsoft.AspNetCore.Mvc.Testing version for each ftm
1 parent 5781ffb commit 64388a8

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,5 @@ For more information, see the [Advanced Functionalities - Advanced control over
8080
### 🛠 Technical
8181

8282
- `GetInfrastructuresAsync` in AsyncEnvironment is no longer Async
83-
- Migrate to slnx
83+
- Migrate to slnx
84+
- Extended target frameworks: NotoriousTest now builds for .NET 6, .NET 8, and .NET 9 (previously only .NET 6)

NotoriousTest.PostgreSql/NotoriousTest.PostgreSql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PackageId>NotoriousTest.PostgreSql</PackageId>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>
9-
<VersionPrefix>3.0.0</VersionPrefix>
9+
<VersionPrefix>3.1.0</VersionPrefix>
1010
<PackageReadmeFile>README.md</PackageReadmeFile>
1111
<Authors>Brice SCHUMACHER</Authors>
1212
<RepositoryUrl>https://github.com/Notorious-Coding/Notorious-Test/</RepositoryUrl>

NotoriousTest.SqlServer/NotoriousTest.SqlServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PackageId>NotoriousTest.SqlServer</PackageId>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>
9-
<VersionPrefix>3.0.0</VersionPrefix>
9+
<VersionPrefix>3.1.0</VersionPrefix>
1010
<PackageReadmeFile>README.md</PackageReadmeFile>
1111
<Authors>Brice SCHUMACHER</Authors>
1212
<RepositoryUrl>https://github.com/Notorious-Coding/Notorious-Test/</RepositoryUrl>

NotoriousTest.TestContainers/NotoriousTest.TestContainers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PackageId>NotoriousTest.TestContainers</PackageId>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>
9-
<VersionPrefix>3.0.0</VersionPrefix>
9+
<VersionPrefix>3.1.0</VersionPrefix>
1010
<PackageReadmeFile>README.md</PackageReadmeFile>
1111
<Authors>Brice SCHUMACHER</Authors>
1212
<RepositoryUrl>https://github.com/Notorious-Coding/Notorious-Test/</RepositoryUrl>

NotoriousTest/NotoriousTest.csproj

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,21 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.22" />
2019
<PackageReference Include="xunit" Version="2.5.0" />
2120
</ItemGroup>
21+
22+
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
23+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.*" />
24+
</ItemGroup>
25+
26+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
27+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.*" />
28+
</ItemGroup>
2229

30+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
31+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.*" />
32+
</ItemGroup>
33+
2334
<ItemGroup>
2435
<None Include="..\icon.png" Pack="true" PackagePath="" Visible="False" />
2536
<None Include="..\README.md" Pack="true" PackagePath="" Visible="False" />

0 commit comments

Comments
 (0)