Can a nuget written in .Net standard 2.0 be consume by application written in .Net Framework 4.8.2

Mini Lahariya 0 Reputation points
2024-02-20T11:38:16.0533333+00:00

I want to write a client application which will work with Azure Storage to upload, download or update blobs in container. I want that, this client application should be compatible with any .Net implementation irrespective of the version. As far as I can read, I find that the best is to use .Net Standard to write the client as it most compatible with other .Net implementations. I have been following below link mainly, but I see that in .Net Standard 2.0 version support list, .Net framework 4.8.2 is not listed. I have an application which is in .Net framework 4.8.2 and need to use the client to interact with Azure Storage. Can you please help me find out the best suited version in which I should write the client application. https://learn.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-0#net-implementation-support

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,451 questions
.NET Runtime
.NET Runtime
.NET: Microsoft Technologies based on the .NET software framework.Runtime: An environment required to run apps that aren't compiled to machine language.
1,130 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 57,731 Reputation points
    2024-02-20T18:29:56.0066667+00:00

    The is no .net 4.8.2 release and probably won’t be. 4.8 is mature and only receives security fixes. 4.8.1 was released to support arm64, the first major feature release in years. Without the arm64 release we would still be on 4.8.0. We will probably be on 4.8.1 for years as again it’s only security patches.

    0 comments No comments