Reputation: 419
my website already host on IIS windows server. But i want to host on linux server this website code. how to deploy my asp.net mvc website on Linux server asp.net code convert into asp.net core.
Upvotes: 2
Views: 750
Reputation: 489
From this question, I understand that you want to migrate your present Asp.net Mvc to dotnet core App. To do this, I am afraid you have to create a new dotnet core project and copy/paste some of your previous code in Asp.net MVC to the new dotnet core project. However, you have to do this as if you are developing a new application entirely because a lot of changes has been made in dotnet core. let me highlight some of those changes here.
.Net framework
for development and deployment. it now uses a dotnet core SDK
.appsettings.json
.Conclusion: Kindly look for a quick tutorial on dotnet core and make sure you refer to the dotnet core documentation for more info.
Upvotes: 2