Skip to content

Commit 266eac7

Browse files
committed
25.0-beta.1
1 parent 6d29ba4 commit 266eac7

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
dotnet-version: |
3333
8.0.x
3434
9.0.x
35+
10.0.x
3536
3637
- name: .NET Info
3738
run: dotnet --info

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
dotnet-version: |
2121
8.0.x
2222
9.0.x
23+
10.0.x
2324
- name: .NET Info
2425
run: dotnet --info
2526

src/Ocelot.Testing.csproj

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
88
<IncludeSymbols>True</IncludeSymbols>
99
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1010
<!--Package properties-->
11-
<Version>24.1.0-beta.2</Version>
11+
<Version>25.0-beta.1</Version>
1212
<PackageId>Ocelot.Testing</PackageId>
1313
<PackageDescription>A shared library for testing the Ocelot core library and its extension packages, including both acceptance and unit tests</PackageDescription>
1414
<PackageReleaseNotes>https://github.com/ThreeMammals/Ocelot.Testing/releases</PackageReleaseNotes>
@@ -21,7 +21,7 @@
2121
<Authors>Raman Maksimchuk</Authors>
2222
<Company>Three Mammals</Company>
2323
<Product>Ocelot Gateway</Product>
24-
<Copyright2025 Three Mammals. MIT licensed OSS</Copyright>
24+
<Copyright2026 Three Mammals. MIT licensed OSS</Copyright>
2525
</PropertyGroup>
2626

2727
<ItemGroup>
@@ -32,18 +32,23 @@
3232

3333
<ItemGroup>
3434
<PackageReference Include="Shouldly" Version="4.3.0" />
35-
<PackageReference Include="System.Text.Json" Version="9.0.11" />
35+
<PackageReference Include="System.Text.Json" Version="10.0.2" />
3636
</ItemGroup>
3737

38-
<!-- Conditionally obtain references for the net 8.0 target -->
38+
<!-- Conditionally obtain references for the .NET 8.0 target -->
3939
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
40-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.22" />
41-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.22" />
40+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.23" />
41+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.23" />
4242
</ItemGroup>
43-
<!-- Conditionally obtain references for the net 9.0 target -->
43+
<!-- Conditionally obtain references for the .NET 9.0 target -->
4444
<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
45-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.11" />
46-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="9.0.11" />
45+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.12" />
46+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="9.0.12" />
47+
</ItemGroup>
48+
<!-- Conditionally obtain references for the .NET 10.0 target -->
49+
<ItemGroup Condition=" '$(TargetFramework)' == 'net10.0' ">
50+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="10.0.2" />
51+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="10.0.2" />
4752
</ItemGroup>
4853

4954
</Project>

0 commit comments

Comments
 (0)