Tom Rider
Tom Rider

Reputation: 2815

Mvc3 application to windowazure

I want to convert my MVC - 3 project to WindowAzure project. I downloaded SDK for VWD express 2010. Can anybody please guide to do this?

Upvotes: 0

Views: 141

Answers (3)

AvkashChauhan
AvkashChauhan

Reputation: 20576

To start with, you don't need to make any changes in your MVC application to move to Windows Azure. Once you have Azure SDK (June 2012) Installed, you will have an option with your Solution properties as "Add Windows Azure Cloud Service Project" to move your MVCx application to Windows Azure. There will not be any change to your main application, but this way your application will be part of Windows Azure Application and run as a Web Role there.

Now if your Azure Application is set as Startup project and if you run your application, this will launch your application in Windows Azure Emulator so you can test your MVCx application in Windows Azure Emulator.

Finally you would need to make necessary code changes (i.e. Database connection etc) to successfully run your application as Windows Azure Cloud Service in cloud. This is all depend on what kind of your application is and how you would want to run your application in cloud.

Upvotes: 0

cory-fowler
cory-fowler

Reputation: 4088

This TechEd 2010 Presentation on Using Microsoft Visual Studio 2010 to Build Applications That Run on Windows Azure by Jim Nakashima should get you going

Upvotes: 0

Shahin Dohan
Shahin Dohan

Reputation: 6932

This should help you: Migrating an Existing ASP.NET App to run on Windows Azure

Upvotes: 2

Related Questions