Upgrade Microsoft.AspNetCore.Routing 3.0 in .NetStandard 2.0

Rajasekar Annavu 21 Reputation points
2022-05-18T10:49:50.683+00:00

when I looked this package version Microsoft.aspnetcore.Routing v3.0 doesn't have on Nuget in Netstandard2.0.

Issue :I am facing sonatype issue that is recommended version Microsoft.AspNetCore.Routing 3.0 for .Netstandard2.0

How do I upgrade specific package on .Netstandard2.0

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,371 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 55,686 Reputation points
    2022-05-18T17:59:34.833+00:00

    asp.net core 2.2 was the last version of asp.net core middleware that was compatible with .netstandard 2.0. asp.net core 3.1 and beyond made use of features of C# that are not supported by .netstandard 2.0.

    with asp.net 3.1, the asp.net core was moved to its own framework/runtime aspnetcore.app and is dependent on netcore.app.

    0 comments No comments