microsoft / service-fabric-aspnetcore

This repo contains ASP.NET Core integration for Service Fabric Reliable Services.
Other
152 stars 49 forks source link

Unsupported ASP.NET Core dependency on .NET Framework #109

Open jirikopecky opened 10 months ago

jirikopecky commented 10 months ago

Is your feature request related to a problem? Please describe. Packages Microsoft.ServiceFabric.AspNetCore.Abstractions and Microsoft.ServiceFabric.AspNetCore.Kestrel depends on ASP.NET Core packages v2.2.x for .NET Framework target, which is out of support.

Describe the solution you'd like Downgrade the dependencies to v2.1.x, which is still supported on .NET Framework.

Describe alternatives you've considered There is no viable alternative - only other option is to depend on unsupported version of ASP.NET Core or rewriting the app to .NET 6/8, which is not always possible or desired.

Additional context Screenshots of dependencies on NuGet.org Microsoft.ServiceFabric.AspNetCore.Kestrel: image Microsoft.ServiceFabric.AspNetCore.Abstractions: image