user16555433
user16555433

Reputation:

What is the difference between .NET5 and .NET standard?

It has been said that .Net5 is unified version of all .Net versions, that is, .Net Framework,.Net core, and mono.But what is the difference between .Net5 and .Net Standard???

Upvotes: 1

Views: 3121

Answers (1)

Mohammad Niazmand
Mohammad Niazmand

Reputation: 1547

.NET 5 removes the need for .NET Standard. Actually, you may think of .NET 5 as the evolution of .NET Standard. However, .NET 5 is not a formal specification but an actual implementation. Also, the release of .NET 5 marks the end of .NET Framework. Read more in this post: https://devblogs.microsoft.com/dotnet/the-future-of-net-standard/

Upvotes: 3

Related Questions