Duende.IdentityServer.Storage version 7.4.6 on .Net 8 has a .Net 10 dependency. #492
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
@nextalk-com Are you getting any specific error when adding the The .NET <Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Duende.IdentityServer.Storage" Version="7.4.6" />
</ItemGroup>
</Project> |
Beta Was this translation helpful? Give feedback.

@nextalk-com Are you getting any specific error when adding the
Duende.IdentityServer.Storagepackage? Or do you have a dependency on an older version ofMicrosoft.AspNetCore.DataProtection.Abstractions?The .NET
*.Abstractionspackages are generally safe to add across different versions of the .NET runtime. They are meant to contain code that isn’t dependent on which version of .NET the code is running on. Interfaces, abstract classes, exceptions, utilities, etc. I was able to create an ASP.NET Core 8.0 app and add the latest version ofDuende.IdentityServer.Storage. The app compiled and ran successfully. Below is my.csprojfile.