Skip to content

Commit 06a8135

Browse files
authored
Merge pull request #954 from DuendeSoftware/wca/is-7-4-net10
.NET 10 and latest package version for Duende.IdentityModel
2 parents 1e9fffc + 59481fa commit 06a8135

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,13 +327,13 @@ Upgrading from IdentityServer4 v4.x to Duende IdentityServer consists of several
327327

328328
### Step 1: Update the .NET Version
329329

330-
In this guide, we'll update to .NET 8 LTS. If your application targets a newer .NET version, you can use that newer version for the IdentityServer host as well.
330+
In this guide, we'll update to .NET 10 LTS.
331331

332332
Update the IdentityServer target framework:
333333

334334
```diff lang="xml" title=".csproj"
335335
- <TargetFramework>netcoreapp3.1</TargetFramework>
336-
+ <TargetFramework>net8.0</TargetFramework>
336+
+ <TargetFramework>net10.0</TargetFramework>
337337
```
338338

339339
Some of your project dependencies may need updating as part of changing the target framework.
@@ -352,6 +352,7 @@ Make sure to consult the ASP.NET Core migration guides provided by Microsoft.
352352
* [Breaking changes in .NET 7](https://learn.microsoft.com/en-us/dotnet/core/compatibility/7.0)
353353
* [Breaking changes in .NET 8](https://learn.microsoft.com/en-us/dotnet/core/compatibility/8.0)
354354
* [Breaking changes in .NET 9](https://learn.microsoft.com/en-us/dotnet/core/compatibility/9.0)
355+
* [Breaking changes in .NET 10](https://learn.microsoft.com/en-us/dotnet/core/compatibility/10.0)
355356

356357
</details>
357358

@@ -362,6 +363,7 @@ Make sure to consult the ASP.NET Core migration guides provided by Microsoft.
362363
* [Migrate from ASP.NET Core 6.0 to 7.0](https://learn.microsoft.com/en-us/aspnet/core/migration/60-70)
363364
* [Migrate from ASP.NET Core 7.0 to 8.0](https://learn.microsoft.com/en-us/aspnet/core/migration/70-80)
364365
* [Migrate from ASP.NET Core 8.0 to 9.0](https://learn.microsoft.com/en-us/aspnet/core/migration/80-90)
366+
* [Migrate from ASP.NET Core 9.0 to 10.0](https://learn.microsoft.com/en-us/aspnet/core/migration/90-to-100)
365367

366368
</details>
367369
:::
@@ -386,7 +388,7 @@ The IdentityModel package was renamed to Duende IdentityModel and needs updating
386388

387389
```diff lang="xml" title=".csproj"
388390
- <PackageReference Include="IdentityModel" Version="x.y.z" />
389-
+ <PackageReference Include="Duende.IdentityModel" Version="7.1.0" />
391+
+ <PackageReference Include="Duende.IdentityModel" Version="8.0.0" />
390392
```
391393

392394
### Step 3: Update Namespaces

0 commit comments

Comments
 (0)