Skip to content

Commit 30a5283

Browse files
Ensure all projects target .Net 6.0 and that all packages are upgraded to the latest minor versions that work with .Net 6.
1 parent d255ad3 commit 30a5283

File tree

13 files changed

+71
-25
lines changed

13 files changed

+71
-25
lines changed

DuendeIdentityServer/DuendeDynamicProviders/DuendeDynamicProviders.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9+
<<<<<<< HEAD
910
<Compile Include="..\..\LicenseKey.cs" Link="LicenseKey.cs" />
1011
</ItemGroup>
1112

1213
<ItemGroup>
1314
<PackageReference Include="Duende.IdentityServer" Version="6.3.5" />
15+
=======
16+
<PackageReference Include="Duende.IdentityServer" Version="6.3.6" />
17+
>>>>>>> d677df3 (Ensure all projects target .Net 6.0 and that all packages are upgraded to the latest minor versions that work with .Net 6.)
1418
<PackageReference Include="Rsk.Saml" Version="6.2.2" />
1519
<PackageReference Include="Rsk.Saml.DuendeIdentityServer" Version="7.2.2" />
1620
<PackageReference Include="Serilog.AspNetCore" Version="7.0.0" />

DuendeIdentityServer/DuendeIdP/DuendeIdP.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9+
<<<<<<< HEAD
910
<Compile Include="..\..\LicenseKey.cs" Link="LicenseKey.cs" />
1011
</ItemGroup>
1112

@@ -14,5 +15,12 @@
1415
<PackageReference Include="Rsk.Saml" Version="5.0.0" />
1516
<PackageReference Include="Rsk.Saml.DuendeIdentityServer" Version="6.0.0" />
1617
<PackageReference Include="Serilog.AspNetCore" Version="7.0.0" />
18+
=======
19+
<PackageReference Include="Duende.IdentityServer" Version="6.3.6" />
20+
<PackageReference Include="Rsk.Saml" Version="6.2.2" />
21+
<PackageReference Include="Rsk.Saml.DuendeIdentityServer" Version="7.2.2" />
22+
23+
<PackageReference Include="Serilog.AspNetCore" Version="7.0.0" />
24+
>>>>>>> d677df3 (Ensure all projects target .Net 6.0 and that all packages are upgraded to the latest minor versions that work with .Net 6.)
1725
</ItemGroup>
1826
</Project>

DuendeIdentityServer/SLO/SamlOidcSLO/Common/Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>

DuendeIdentityServer/SLO/SamlOidcSLO/IdentityServer/IdentityServer.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net6.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<UserSecretsId>38ced442-cf32-4289-bb08-57d4a78831b3</UserSecretsId>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageReference Include="AspNetCore.ReCaptcha" Version="1.7.0" />
9-
<PackageReference Include="Duende.IdentityServer.EntityFramework" Version="6.3.5" />
10-
<PackageReference Include="Microsoft.AspNetCore.Authentication.WsFederation" Version="7.0.13" />
11-
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="7.0.13" />
12-
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="7.0.13" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.13" />
14-
<PackageReference Include="Microsoft.Extensions.Caching.SqlServer" Version="7.0.13" />
15-
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="7.0.13" />
9+
<PackageReference Include="Duende.IdentityServer.EntityFramework" Version="6.3.6" />
10+
<PackageReference Include="Microsoft.AspNetCore.Authentication.WsFederation" Version="6.0.25" />
11+
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="6.0.25" />
12+
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="6.0.25" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.25" />
14+
<PackageReference Include="Microsoft.Extensions.Caching.SqlServer" Version="6.0.25" />
15+
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.25" />
1616
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1717
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="3.21.120" />
1818
<PackageReference Include="Rsk.Saml.DuendeIdentityServer" Version="7.2.2" />
1919
<PackageReference Include="Rsk.Saml.DuendeIdentityServer.EntityFramework" Version="7.2.2" />
2020
<PackageReference Include="Serilog.AspNetCore" Version="7.0.0" />
21-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.13" />
21+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.25" />
2222
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
2323
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="6.3.0" />
2424
<PackageReference Include="System.ServiceModel.Http" Version="6.1.0" />

DuendeIdentityServer/SLO/SamlOidcSLO/WebClient.OIDC/WebClient.OIDC.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<RootNamespace>WebClient</RootNamespace>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.13" />
11+
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.25" />
1212
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.0.3" />
1313
<PackageReference Include="Rsk.Saml" Version="6.2.2" />
1414
</ItemGroup>

DuendeIdentityServer/SLO/SamlOidcSLO/WebClient.SAML.1/WebClient.SAML.1.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<RootNamespace>WebClient</RootNamespace>
88
</PropertyGroup>
99

1010
<ItemGroup>
11+
<<<<<<< HEAD
1112
<Compile Include="..\..\..\..\LicenseKey.cs" Link="LicenseKey.cs" />
1213
</ItemGroup>
1314

1415
<ItemGroup>
1516
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.1" />
1617
<PackageReference Include="Rsk.Saml" Version="6.0.1" />
1718
</ItemGroup>
19+
=======
20+
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.25" />
21+
<PackageReference Include="Rsk.Saml" Version="6.2.2" />
22+
</ItemGroup>
23+
>>>>>>> d677df3 (Ensure all projects target .Net 6.0 and that all packages are upgraded to the latest minor versions that work with .Net 6.)
1824

1925
<ItemGroup>
2026
<None Update="testclient.pfx">

DuendeIdentityServer/SLO/SamlOidcSLO/WebClient.SAML.2/WebClient.SAML.2.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<RootNamespace>WebClient</RootNamespace>
88
</PropertyGroup>
99

1010
<ItemGroup>
11+
<<<<<<< HEAD
1112
<Compile Include="..\..\..\..\LicenseKey.cs" Link="LicenseKey.cs" />
1213
</ItemGroup>
1314

1415
<ItemGroup>
1516
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.1" />
17+
=======
18+
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.25" />
19+
>>>>>>> d677df3 (Ensure all projects target .Net 6.0 and that all packages are upgraded to the latest minor versions that work with .Net 6.)
1620
<PackageReference Include="Rsk.Saml" Version="6.2.2" />
1721
</ItemGroup>
1822

OpenIddict/OpenIddictIdP/OpenIddictIdP.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
66
</PropertyGroup>
77

@@ -11,18 +11,18 @@
1111

1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.13" />
15-
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.13" />
16-
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
14+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.25" />
15+
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.25" />
16+
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
1717
<PackageReference Include="Rsk.Saml.OpenIddict.AspNetCore.Identity" Version="8.0.0-preview2" />
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.13" />
22-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="7.0.13" />
23-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.13" />
24-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" PrivateAssets="all" Version="7.0.13" />
25-
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.11" />
21+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.25" />
22+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.25" />
23+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.25" />
24+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" PrivateAssets="all" Version="6.0.25" />
25+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.16" />
2626
<PackageReference Include="OpenIddict.Quartz" Version="4.9.0" />
2727
<PackageReference Include="Quartz.Extensions.Hosting" Version="3.7.0" />
2828
<PackageReference Include="Rsk.Saml.OpenIddict" Version="8.0.0-preview2" />

OpenIddict/OpenIddictIdP/Startup.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@
1111
using Rsk.Saml.Configuration;
1212
using Rsk.Saml.OpenIddict.AspNetCore.Identity.Configuration.DependencyInjection;
1313
using Rsk.Saml.OpenIddict.Configuration.DependencyInjection;
14-
using Rsk.Saml.OpenIddict.EntityFrameworkCore.Configuration.DependacyInjection;
1514
using openiddictidp.Data;
15+
<<<<<<< HEAD
1616
using Rsk.Saml.Samples;
17+
=======
18+
using Rsk.Saml.OpenIddict.EntityFrameworkCore.Configuration.DependencyInjection;
19+
>>>>>>> d677df3 (Ensure all projects target .Net 6.0 and that all packages are upgraded to the latest minor versions that work with .Net 6.)
1720
using static OpenIddict.Abstractions.OpenIddictConstants;
1821

1922
namespace openiddictidp;

spWithIdpInitiated/spWithIdpInitiated.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8+
<<<<<<< HEAD
89
<Compile Include="..\LicenseKey.cs" Link="LicenseKey.cs" />
10+
=======
11+
<PackageReference Include="Rsk.Saml" Version="8.0.0-rc1" />
12+
>>>>>>> d677df3 (Ensure all projects target .Net 6.0 and that all packages are upgraded to the latest minor versions that work with .Net 6.)
913
</ItemGroup>
1014

1115
<ItemGroup>

0 commit comments

Comments
 (0)