When creating a new azure web application it is probably faster if you create your new web app from Visual Studio, but I like creating them from the azure portal since I'm usually in there already doing other management stuff. The problem is when I go back into Visual Studio to connect my new web app to azure it isn't quite clear the workflow to use to get your app deployed into azure.
Sense we are already inside azure let's create a new web app:
After you press the Create button Azure will provision your new web app. When it is done it will take you to the following screen where you can download the "Publish Settings" for your web app:
Now that we have our app created in Azure, let's create our app in Visual Studio.
Open up Visual Studio and select New Project:
The "New Project" window should now be opened up.
The "New ASP.NET Project -
On this screen is where I was getting confused because we are going to be hosting our application in the cloud, but if you check that option, you have to create a new app instead of selecting from a dropdown of existing apps. For this reason we are going to leave this box unchecked and then press OK.
Your project should now be creating:
Now open up Solution Explorer and right-click "Publish...":
The "Publish Web" window should now be open. Press the "Import Button":
And browse for the publish settings file we downloaded earlier from our web app inside of azure:
Once you have selected the file you can press OK:
The "Publish Web" window should change to show the following screen with your app settings. Now press Publish:
And now you are done. You have successfully created a web app inside of Azure Portal, downloaded the publish settings file, and connected it to a new Visual Studio project.