The process of making the raw code (Visual Studio Solution) to Azure Cloud runnable instance.
Questions tagged [azure-deployment]
579 questions
0
votes
0 answers
Azure Packaging in Visual Studio Online
I have an Azure cloud project stored in VSOnline. Is there a way to automatically package the cloud project and drop to a location in VSOnline itself? I have tried the AzureContinuousDeployment.11.xaml template which does not meet my requirement…

Bandara
- 780
- 8
- 29
0
votes
1 answer
Orchard - Stylesheet not found with Style.Require in Orchard 1.8
I just upgraded my site to Orchard version 1.8. Everything is fine until I use Orchard.Azure to publish to my Cloud Service.
Then the site responds with:
A 'stylesheet' named 'Menus' could not be found.
Menus is the name of the resource bundle in…

Madelene
- 970
- 7
- 7
0
votes
0 answers
git deploy to an Azure website fails with "unknown error"
I've been successfully using Git deploy (via Kudu) to a couple of Azure websites (e.g., beta/prod) for several months, and it's worked quite well. Starting today, I noticed that when I push to the appropriate respective git branch to my beta website…

Ken Smith
- 20,305
- 15
- 100
- 147
0
votes
1 answer
How can I programmatically determine if an azure webrole instance returns 500 error in onstart method of webrole.cs?
I have this scenario: asp.net application running as azure webrole, 2 small instances. Sometimes when the vm's are restarting, one of my instances returns 500 error, I have to manually restart each instance and hope for the best. How can I check in…

Ion Dronic
- 35
- 1
- 4
0
votes
1 answer
Azure Web Packs: Why is there a quota on the temporary folder of a web worker?
I just created a proof-of-concept setup for Windows Azure Packs, having a Front End Server, a Publish Server and a Web Worker. There is a simple plan which allows full control over the web sites cloud. In the plans details the "subscription storage…

turbophi
- 151
- 2
- 8
0
votes
1 answer
TFS Azure deploy build cannot find the dependent assembly Microsoft.Exchange.WebServices.dll
My Azure deployment script on TFS always fails to locate the assembly Microsoft.Exchange.WebServices.dll when deploying to Azure.
I always get the following warning:
The project '...' is dependent on the following assembly:…

bsavio
- 68
- 1
- 6
0
votes
1 answer
VS2012: Release vs Debug
There is an Azure Cloud service with webrole project developed in ASP.NET MVC 4 and JQuery.
When the cloud service is deployed with Debug build, everything works fine.
But Release build has UI issues and also some exceptions like:
Error: Message:…

Srinivas
- 2,479
- 8
- 47
- 69
0
votes
1 answer
Error While uploading to windows Azure using powershell Script
I am uploading the application to windows Azure using the powershell Script
New-AzureDeployment -ServiceName $servicename -Label MySite
-Slot "Staging" -Package "C:\Users\ronak\Documents\Visual Studio…

Ronak Jain
- 11
- 2
0
votes
1 answer
Azure Web Role Deployment
I have a Web Role in Azure that is under development. I would like to make a package that can be published and tested in staging environment without the help of Visual Studio. Is there a way to publish if just the package is provided?

Srinivas
- 2,479
- 8
- 47
- 69
0
votes
1 answer
Azure Publish giving "The Type or Namespace {x} cannot be resolved" error
I have a MVC 4 web project that I have been working on for about a year. It is currently published and running on azure in production, and has been working there for about a year. My dev machine malfunctioned and I had to replace it. After…

MSD
- 312
- 5
- 14
0
votes
1 answer
Socket exception 10048 when trying to start Azure emulator
When i try to start up the windows azure web solution it keeps giving me a socket exception with the code 10048, and then stops deployment to local emulator.
It seems like there are some problems with conflicting ports?
I have tried:
- rebooting…

Stian Standahl
- 2,506
- 4
- 33
- 43
0
votes
2 answers
create azure package with build
I was just upgrading my project from sdk 1.3 to 1.7 and I noticed that now when I build the application the package(cspkg) is not created with the build. I have go click on publish to create a package. Is there a way to tell VS to create a package…

Kunal Ranglani
- 408
- 3
- 14
-1
votes
1 answer
Building and Deploying a Static Web Page Using Azure DevOps Pipeline (Excluding Release Pipeline)
I'm attempting to create a pipeline in Azure DevOps to both build and deploy a static web page. I've managed to build and publish the artifacts using the following pipeline configuration:
- task: PublishBuildArtifacts@1
displayName: Publish…

stela
- 27
- 4
-1
votes
1 answer
Unable to edit or replace deployment {deploymentName}: previous deployment from {datetime} is still active (expiration time is {datetime})
I'm trying to deploy an Azure Bicep template with
az deployment sub create --name "deploymentName" --template-file template.json --location="westeurope" --parameters ...
When I go to Azure Portal to review my resource group deployments I can see…

Sergio
- 175
- 5
- 21
-1
votes
1 answer
Azure DevOps pipeline template: Referencing templates from a common source?
We are using Azure DevOps to build and deploy and we are using Azure DevOps build templates to improve the quality of the build pipelines. We are using the build pipeline templates like the sample shown below
trigger:
batch: true
branches:
…

One Developer
- 99
- 5
- 43
- 103