azure-web-app-service
How do I change the name of an Azure Resource Group?
Edit: You can’t rename an Azure Resource Group. What you can do is move your resources to a new Resource Group instead. Moving all resources in Resource Group A to Resource Group B is the poor man’s rename. Unfortunately not all resource providers let you move resources between resource groups, and some that do might … Read more
Connecting to an Azure website via FTP using Azure login credentials
In the current Azure portal the deployment credentials can be set by going to App Services → select the relevant app service item → in the Deployment section → Deployment Center → FTP → Dashboard. You can either chose to use the preprovided App Credentials or assign User Credentials. In the previous generation Azure portal … Read more
What is the difference between an API App and a Web App?
Updating the answer to current state of Azure, App Services now replaces all Mobile, Api and Web Apps flavors as a single app framework with all the functionality rolled over to make things more accessible across application types. Currently all of Web, Mobile and Api Apps are collectively called App Services. We still offer customer … Read more
How can I use NuGet packages in my Azure Functions?
Yes! Although the Azure Functions portal does not currently provide a mechanism to add and manage NuGet packages, the runtime supports NuGet references and will make sure they are correctly used when compiling and executing your functions. In order to define your dependencies, you need to create a Project.json file with the required NuGet package … Read more
Could not load file or assembly System.Web.Http.WebHost after published to Azure web site
The dll is missing in the published (deployed environment). That is the reason why it is working in the local i.e. Visual Studio but not in the Azure Website Environment. Just do Copy Local = true in the properties for the assembly(System.Web.Http.WebHost) and then do a redeploy, it should work fine. If you get the … Read more
Azure: Is there a way to view deployed files in Azure?
If you’re just trying to look around, and see the various directories and files in your deployment, you can enter the site’s “Kudu” dashboard, using the url format http://<yoursitename>.scm.azurewebsites.net This will give you a web-based dashboard, including a debug console (web-based) where you can explore your various directories (and the directories will show up visually … Read more