Reputation: 21186
I have created a project using C#.NET MVC 4.0 and I want to publish the project (website) to my azure account... I cannot see any way of publishing my project to my windows azure? I have followed the Cloud service set up guide only to be utterly confused at how I link it up to my existing project?
Any help?
So overview is, I have a project (MVC web application) and I just want to publish it to azure so that it works like a website others can view.
Upvotes: 2
Views: 10723
Reputation: 16
yes goto azure portal - create website and keep it in start mode come to visual studio select publish -- Import from azure website - just enter your credentials and automatically VS gets the settings and displays the website that we created - just select from the list..that's it - this is without explicitly downloading the publish profile.
Upvotes: 0
Reputation: 2313
I would try right clicking the project in the Project Explorer
section and look for something along the lines of Publish
or Deploy
.
Upvotes: 1
Reputation: 399
One of the easiest ways of getting your MVC project "out there" is to go to the Azure portal, and create a new "Web Site". The difference between Azure Websites and Azure Cloud Services are answered in other questions here on Stack. Here is how you can do it with Azure Websites:
Another option is to deploy directly from sourcecontrol eg. GitHub. Follow the wizard in the Azure portal. In the website dashboard, hit the link "Set up deployment from source control".
Upvotes: 0