|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net8.0;net9.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks> |
5 | 5 | <ImplicitUsings>enable</ImplicitUsings> |
6 | 6 | <Nullable>enable</Nullable> |
7 | 7 | <GeneratePackageOnBuild>False</GeneratePackageOnBuild> |
8 | 8 | <IncludeSymbols>True</IncludeSymbols> |
9 | 9 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
10 | 10 | <!--Package properties--> |
11 | | - <Version>24.1.0-beta.2</Version> |
| 11 | + <Version>25.0-beta.1</Version> |
12 | 12 | <PackageId>Ocelot.Testing</PackageId> |
13 | 13 | <PackageDescription>A shared library for testing the Ocelot core library and its extension packages, including both acceptance and unit tests</PackageDescription> |
14 | 14 | <PackageReleaseNotes>https://github.com/ThreeMammals/Ocelot.Testing/releases</PackageReleaseNotes> |
|
21 | 21 | <Authors>Raman Maksimchuk</Authors> |
22 | 22 | <Company>Three Mammals</Company> |
23 | 23 | <Product>Ocelot Gateway</Product> |
24 | | - <Copyright>© 2025 Three Mammals. MIT licensed OSS</Copyright> |
| 24 | + <Copyright>© 2026 Three Mammals. MIT licensed OSS</Copyright> |
25 | 25 | </PropertyGroup> |
26 | 26 |
|
27 | 27 | <ItemGroup> |
|
32 | 32 |
|
33 | 33 | <ItemGroup> |
34 | 34 | <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" /> |
36 | 36 | </ItemGroup> |
37 | 37 |
|
38 | | - <!-- Conditionally obtain references for the net 8.0 target --> |
| 38 | + <!-- Conditionally obtain references for the .NET 8.0 target --> |
39 | 39 | <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" /> |
42 | 42 | </ItemGroup> |
43 | | - <!-- Conditionally obtain references for the net 9.0 target --> |
| 43 | + <!-- Conditionally obtain references for the .NET 9.0 target --> |
44 | 44 | <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" /> |
47 | 52 | </ItemGroup> |
48 | 53 |
|
49 | 54 | </Project> |
0 commit comments