Can an existing MVC2 app migrate to Azure Cloud Service Project?

I currently have an MVC2 web app (on transition). If I am using Azure PaaS (Platform as a Service), can I use an existing project. Or should I create a new project (using the cloud service project template)? Can it be transferable? And what effort will it take to migrate? Or do I need to rewrite the entire application with a new project template?

+3


source to share


2 answers


You don't need to rewrite the project itself, you can just add another project to your solution (it's a cloud project) and then point it to another project in the linked definitions.



This is a useful technique when you already have projects that you want to migrate to Azure.

+3


source


Not sure if this will work with MVC 2 web app, but you can just try to convert web app to Cloud Services project by right clicking on your project in Visual Studio (I used VS 2013) then Convert

context menu and then select Convert to Microsoft Azure Cloud Service Project

.



enter image description here

+1


source







All Articles