Deploy Zip Package to Azure as Web AppHow do you deploy your .NET Web Application? (Recommendations,...
What do the pedals on grand pianos do?
Skis versus snow shoes - when to choose which for travelling the backcountry?
How to count occurrences of Friday 13th
Why do members of Congress in committee hearings ask witnesses the same question multiple times?
What to do when being responsible for data protection in your lab, yet advice is ignored?
How to mitigate "bandwagon attacking" from players?
Is there any relevance to Thor getting his hair cut other than comedic value?
Non-Italian European mafias in USA?
How to acknowledge an embarrassing job interview, now that I work directly with the interviewer?
Is there a low-level alternative to Animate Objects?
Auto Insert date into Notepad
Does music exist in Panem? And if so, what kinds of music?
Can chords be played on the flute?
Whom do I have to contact for a ticket refund in case of denied boarding (in the EU)?
Linear regression when Y is bounded and discrete
You'll find me clean when something is full
Hacker Rank: Array left rotation
Should I choose Itemized or Standard deduction?
How to speed up a process
Is my plan for fixing my water heater leak bad?
What type of postprocessing gives the effect of people standing out
"Murder!" The knight said
Difference between 'stomach' and 'uterus'
I am on the US no-fly list. What can I do in order to be allowed on flights which go through US airspace?
Deploy Zip Package to Azure as Web App
How do you deploy your .NET Web Application? (Recommendations, please!)Deploying an ASP.NET JSON-RPC web service on IIS 7Windows Azure for dummy UNIX gurus?Deploying Azure Web Apps from Linux-based Jenkins VMAzure Web App / Azure SQL - LatencyCertificate error preventing remote desktop to Azure cloud service: 'The certificate does not have a private key.'cannot deploy web app from github to azureDeploy Java app to Azure over https behind proxyAzure web apps recycled at randomAzure blobs vs Heroku type storage
Having a Visual Studio project to deploy to Azure from Jenkins running on GNU/Linux, I'd like to prepare a package with MSBuild in Windows. Something like MSBuild my.csproj /T:Package
. This will create a zip file.
Now, how can I deploy this file to an Azure Web App instance over ftp? I was hoping just putting the file in wwwroot would unpack it, but that doesn't seem to be the case.
Any good suggestion is very welcome.
azure deployment .net
bumped to the homepage by Community♦ 5 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Having a Visual Studio project to deploy to Azure from Jenkins running on GNU/Linux, I'd like to prepare a package with MSBuild in Windows. Something like MSBuild my.csproj /T:Package
. This will create a zip file.
Now, how can I deploy this file to an Azure Web App instance over ftp? I was hoping just putting the file in wwwroot would unpack it, but that doesn't seem to be the case.
Any good suggestion is very welcome.
azure deployment .net
bumped to the homepage by Community♦ 5 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Having a Visual Studio project to deploy to Azure from Jenkins running on GNU/Linux, I'd like to prepare a package with MSBuild in Windows. Something like MSBuild my.csproj /T:Package
. This will create a zip file.
Now, how can I deploy this file to an Azure Web App instance over ftp? I was hoping just putting the file in wwwroot would unpack it, but that doesn't seem to be the case.
Any good suggestion is very welcome.
azure deployment .net
Having a Visual Studio project to deploy to Azure from Jenkins running on GNU/Linux, I'd like to prepare a package with MSBuild in Windows. Something like MSBuild my.csproj /T:Package
. This will create a zip file.
Now, how can I deploy this file to an Azure Web App instance over ftp? I was hoping just putting the file in wwwroot would unpack it, but that doesn't seem to be the case.
Any good suggestion is very welcome.
azure deployment .net
azure deployment .net
asked Apr 3 '17 at 13:53
JohanJohan
621317
621317
bumped to the homepage by Community♦ 5 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 5 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Use Powershell Plugin for Jenkins and install Azure Powershell on build servers. Here's a nice guide:
Devops on Windows with Jenkins and Azure Resource Manager
From here, you can easily deploy the zip using the cmdlet below:
Publish-AzureWebsiteProject -Name site1 -Package .WebApplication1.zip
You can find more information about this cmdlet here.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f842253%2fdeploy-zip-package-to-azure-as-web-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use Powershell Plugin for Jenkins and install Azure Powershell on build servers. Here's a nice guide:
Devops on Windows with Jenkins and Azure Resource Manager
From here, you can easily deploy the zip using the cmdlet below:
Publish-AzureWebsiteProject -Name site1 -Package .WebApplication1.zip
You can find more information about this cmdlet here.
add a comment |
Use Powershell Plugin for Jenkins and install Azure Powershell on build servers. Here's a nice guide:
Devops on Windows with Jenkins and Azure Resource Manager
From here, you can easily deploy the zip using the cmdlet below:
Publish-AzureWebsiteProject -Name site1 -Package .WebApplication1.zip
You can find more information about this cmdlet here.
add a comment |
Use Powershell Plugin for Jenkins and install Azure Powershell on build servers. Here's a nice guide:
Devops on Windows with Jenkins and Azure Resource Manager
From here, you can easily deploy the zip using the cmdlet below:
Publish-AzureWebsiteProject -Name site1 -Package .WebApplication1.zip
You can find more information about this cmdlet here.
Use Powershell Plugin for Jenkins and install Azure Powershell on build servers. Here's a nice guide:
Devops on Windows with Jenkins and Azure Resource Manager
From here, you can easily deploy the zip using the cmdlet below:
Publish-AzureWebsiteProject -Name site1 -Package .WebApplication1.zip
You can find more information about this cmdlet here.
answered Apr 4 '17 at 10:34
Bruno FariaBruno Faria
3,4441616
3,4441616
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f842253%2fdeploy-zip-package-to-azure-as-web-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown