so i created my Azure Mobile App (Preview) project in visual studio, so just like Azure API App (preview) you can publish your project to azure by right clicking the project and click publish and you will see Azure API App Preview then you can now publish it to azure, but not in Azure Mobile app. so anyone who know how to publish it to azure? Please assume that I already created an Azure Mobile App in the portal and i just want to update it.
Found it, I just need to select the Web App and i will see my Mobile App there. i use this reference
https://github.com/Azure/azure-content/blob/master/includes/app-service-mobile-dotnet-backend-publish-service.md
Related
I want to publish my single page app to Azure. I have created the App Service, App Service Plan and downloaded the publish profile settings on my local. Now I can use FTP to publish it to Azure. But I am wondering if there is a way I can configure this in the my Visual Studio similar to what we do when publishing a .Net application (MVC or Web API) as shown below in the snapshot.
My single page application is not part of the solution. This is how the structure of my projects look like.
It has one .Net Core Web API project and one Single Page App created in Vue.js. I can publish the Web API project from the Visual Studio but not the SPA. Any help with this please?
Per my knowledge, it is impossible to publish it in Visual Studio similar to what we do when publishing a .Net application. There is no Publish... option for us to choose.
As a workaround, we can upload our SPA project to Azure web app via KuDu.
More information about KuDu, we can refer to: Using KUDU with Microsoft Azure Web Apps
We just need to drag the SPA project into KUDU under wwwroot folder as below:
I currently want to apply a user authentication system using AAD into a Xamarin.Forms App I have been working on through Visual Studio. I have created an Azure account and the Xamarin support guides are out of date with the Azure WebPortal so just look for some help on implementing Azure Active Directory into my app, as to how to register my app to the AAD on the web portal, the proper NuGet packages, etc. at least to get me started. A lot of the online guides are outdated.
Please use https://www.nuget.org/packages/Microsoft.IdentityModel.Clients.ActiveDirectory/3.13.8
The code samples are available at https://github.com/Azure-Samples?utf8=%E2%9C%93&q=xamarin&type=&language=
I published my ASP .NET Web API 2 project to Azure as an API app. I used Visual Studio 2013 and got this lovely screen after publishing.
But the API app is no where to be found in my Azure portal.
I looked in my Visual Studio Server Explorer and it is there.
I got the same result as yours after publishing the API app, it's just not listed when clicking Browse > API Apps. Although it says "Web, Mobile and API apps are now in one list", it obviously doesn't work as it says.
Anyway, you can alternatively find your API app in the resource group which you specified in the publishing profile:
Or, just right click the API app in Server Explorer and select "Open in Management Portal" option to open it in the portal:
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?
This should help you: Migrating an Existing ASP.NET App to run on Windows Azure
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
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.
I have a asp.net website that's in asp.net 2.0. How to deploye in azure?
You question is very vague due to the fact that now there are three way you can deploy your ASP.NET website to Windows Azure. :
Windows Azure Web Sites:
This is in preview phase and released very recently. You can create a free website by signing up to Windows Azure Preview and create upto 10 free shared websites using the information provided below:
Deploying an ASP.NET Web Application to a Windows Azure Web Site and SQL Database
Windows Azure Virtual Machine:
In this method you create your own Virtual Machine with IIS and then deploy your ASP.NET application directly to it. The Virtual Machine is persisted so anything you will deploy to your virtual machine will persist.
Create a Virtual Machine Running Windows Server 2008 R2
Windows Azure Web Role
This is the PaaS based Windows Azure Cloud service where you can deploy to your application directly to Windows Azure cloud using Windows Azure SDK as described below:
Deploying an ASP.NET Web Application to a Windows Azure Cloud Service and SQL Database
As there is lot of information above and you might be overwhelm, I would suggest just stick with the option #1. Signup for Windows Azure Preview and create your "Windows Azure Website" and start from there.