Difference between the products and working experience?
Whats the major difference between .net,.net core , Asp.net, Asp.net core?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manikandan MurugesanPosted Jul 28, 2017, 8:13 PM
.NET Framework is the "full" or "traditional" flavor of .NET that's distributed with Windows. Use this when you are building a desktop Windows app or working with ASP.NET 4.5/4.6.
.NET Core is cross-platform .NET that can run on Windows, Mac, and Linux. Use this when you want to build applications that can run on any platform, including Docker.
The CORE frameworks which includes ASP.net CORE is basically just a framework which allows it to be hosted on multiple operating systems such as Windows, MAC and Linux.
Essentially the same functionality as regular ASP.NET but with multi platform support.