Hi Team,
Please let me know which version of windows servers will support .Net core. Currently my app hosted in 2016 with Asp.Net MVC. What is the best way to migrate the application to .Net core.
Thanks,
Sagarpallavi
Hi Team,
Please let me know which version of windows servers will support .Net core. Currently my app hosted in 2016 with Asp.Net MVC. What is the best way to migrate the application to .Net core.
Thanks,
Sagarpallavi
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.
Naimish MakwanaPosted Mar 8, 2024, 7:35 AM
.NET Core is supported on Windows Server 2012 R2 and later1.
To migrate your ASP.NET MVC application to .NET Core, you can follow these general steps2345:
Remember, migration is a step-by-step process and it’s recommended to test each part of your application as you migrate it. Also, keep in mind that not all ASP.NET MVC features are available in ASP.NET Core, so some parts of your application might require more significant changes or rewrites.
Please note that this is a high-level overview and the exact steps can vary based on the specifics of your application and its dependencies. For detailed instructions, you can refer to the official Microsoft documentation23.
https://learn.microsoft.com/en-us/aspnet/core/migration/mvc?view=aspnetcore-8.0
Thanks