Skip to content

Commit 09504e6

Browse files
committed
Ocelot.Testing package reference
1 parent 37edd66 commit 09504e6

4 files changed

+10
-25
lines changed

Ocelot.Administration.IdentityServer4.sln

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ocelot.Administration.Ident
1111
EndProject
1212
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ocelot.Administration.IdentityServer4.AcceptanceTests", "acceptance\Ocelot.Administration.IdentityServer4.AcceptanceTests.csproj", "{E153AF87-77DE-421F-86BC-3E5B4A72956D}"
1313
EndProject
14-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ocelot", "..\Ocelot\src\Ocelot\Ocelot.csproj", "{76A4A34F-8799-F712-3EC2-37304A41F110}"
15-
EndProject
16-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ocelot.Testing", "..\Ocelot\test\Ocelot.Testing\Ocelot.Testing.csproj", "{FF7A4C4B-3F30-B61E-7981-F3C27656CAD9}"
17-
EndProject
1814
Global
1915
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2016
Debug|Any CPU = Debug|Any CPU
@@ -37,14 +33,6 @@ Global
3733
{E153AF87-77DE-421F-86BC-3E5B4A72956D}.Debug|Any CPU.Build.0 = Debug|Any CPU
3834
{E153AF87-77DE-421F-86BC-3E5B4A72956D}.Release|Any CPU.ActiveCfg = Release|Any CPU
3935
{E153AF87-77DE-421F-86BC-3E5B4A72956D}.Release|Any CPU.Build.0 = Release|Any CPU
40-
{76A4A34F-8799-F712-3EC2-37304A41F110}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
41-
{76A4A34F-8799-F712-3EC2-37304A41F110}.Debug|Any CPU.Build.0 = Debug|Any CPU
42-
{76A4A34F-8799-F712-3EC2-37304A41F110}.Release|Any CPU.ActiveCfg = Release|Any CPU
43-
{76A4A34F-8799-F712-3EC2-37304A41F110}.Release|Any CPU.Build.0 = Release|Any CPU
44-
{FF7A4C4B-3F30-B61E-7981-F3C27656CAD9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
45-
{FF7A4C4B-3F30-B61E-7981-F3C27656CAD9}.Debug|Any CPU.Build.0 = Debug|Any CPU
46-
{FF7A4C4B-3F30-B61E-7981-F3C27656CAD9}.Release|Any CPU.ActiveCfg = Release|Any CPU
47-
{FF7A4C4B-3F30-B61E-7981-F3C27656CAD9}.Release|Any CPU.Build.0 = Release|Any CPU
4836
EndGlobalSection
4937
GlobalSection(SolutionProperties) = preSolution
5038
HideSolutionNode = FALSE

acceptance/Ocelot.Administration.IdentityServer4.AcceptanceTests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<ProjectReference Include="..\..\Ocelot\test\Ocelot.Testing\Ocelot.Testing.csproj" />
1918
<ProjectReference Include="..\src\Ocelot.Administration.IdentityServer4.csproj" />
2019
</ItemGroup>
2120
<ItemGroup>
@@ -33,14 +32,15 @@
3332
</PackageReference>
3433
<PackageReference Include="CacheManager.Serialization.Json" Version="2.0.0" />
3534
<PackageReference Include="Ocelot.Cache.CacheManager" Version="24.0.0" />
35+
<PackageReference Include="Ocelot.Testing" Version="24.0.0" />
3636
</ItemGroup>
3737
<!-- Conditionally obtain references for the net 8.0 target -->
3838
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
39-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.15" />
39+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.16" />
4040
</ItemGroup>
4141
<!-- Conditionally obtain references for the net 9.0 target -->
4242
<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
43-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="9.0.4" />
43+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="9.0.5" />
4444
</ItemGroup>
4545

4646
<ItemGroup>

src/Ocelot.Administration.IdentityServer4.csproj

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

8-
<VersionPrefix>23.4</VersionPrefix>
9-
<Version>23.4.3</Version>
10-
<AssemblyVersion>23.4.3</AssemblyVersion>
8+
<VersionPrefix>24.0</VersionPrefix>
9+
<Version>24.0.0</Version>
1110
<Copyright>Three Mammals</Copyright>
1211
<Product>Ocelot</Product>
1312
<Authors>Tom Pallister, Raman Maksimchuk</Authors>
@@ -21,12 +20,9 @@
2120
</PropertyGroup>
2221

2322
<ItemGroup>
24-
<!--<PackageReference Include="Ocelot" Version="24.0.0" />-->
23+
<PackageReference Include="Ocelot" Version="24.0.0" />
2524
<PackageReference Include="IdentityServer4" Version="4.1.2" />
2625
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
2726
</ItemGroup>
2827

29-
<ItemGroup>
30-
<ProjectReference Include="..\..\Ocelot\src\Ocelot\Ocelot.csproj" />
31-
</ItemGroup>
3228
</Project>

unit/Ocelot.Administration.IdentityServer4.UnitTests.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,23 @@
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
18+
<PackageReference Include="Moq" Version="4.20.72" />
1819
<PackageReference Include="xunit" Version="2.9.3" />
1920
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
2021
<PrivateAssets>all</PrivateAssets>
2122
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2223
</PackageReference>
23-
<PackageReference Include="Moq" Version="4.20.72" />
24+
<PackageReference Include="Ocelot.Testing" Version="24.0.0" />
2425
</ItemGroup>
2526

2627
<ItemGroup>
27-
<ProjectReference Include="..\..\Ocelot\test\Ocelot.Testing\Ocelot.Testing.csproj" />
2828
<ProjectReference Include="..\src\Ocelot.Administration.IdentityServer4.csproj" />
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<Using Include="Xunit" />
3332
<Using Include="Moq" />
33+
<Using Include="Xunit" />
34+
<Using Include="Ocelot.Testing" />
3435
</ItemGroup>
3536

3637
</Project>

0 commit comments

Comments
 (0)