Microsoft command line tool for deploying, synchronizing and packaging web applications, content and configuration settings to IIS Web Servers.
2
votes
2answers
3k views
Visual Studio 2012 Web Deploy Publish ignores selected Configuration for transform and build
When I create a publish profile I have the option to select which Configuration I want the publish to use for this profile. The options are like Debug, Release or any custom defined one like Staging.
...
0
votes
0answers
9 views
Azure websites Deploy from Source Control fails on nuget dependency
Asp.Net v4 Webforms App has a dependency on Windows.Azure.Storage. This all works fine if i use WebDeploy to deploy it to Azure Websites.
Now i want to use a branch in my bitbucket repo to have it ...
0
votes
0answers
34 views
msdeploy cannot reach destination despite having web deployment service started
as you can see from the title I am experiencing some trouble deploying to a remote IIS.
Here is what I have done so far:
I have set up a virtual machine running an IIS7 on Windows Server 2008.
I ...
0
votes
0answers
7 views
MSDeploy WMSVC Not working
I have a build/test server which is currently running Jenkins for my continuous integration and it also is acting as my test server where code will be deployed to once built (i hope to rectify this ...
3
votes
3answers
4k views
Breaking MsBuild package & deploy into separate MsBuild and MsDeploy commands
I'm having a few problems breaking out an MsBuild package+deploy command into two separate commands. (I need to do this to pass additional parameters to MsDeploy).
The command that works fine looks ...
0
votes
0answers
11 views
Is “AutoParameterizationWebConfigConnectionStrings”-option the only way to prevent connection string tokenization?
I am still trying to get my head around MSBuild things.
Currently I am fiddling around with deploying via powershell script using the generated scripts from the PackageWeb-Nuget-Package (video demo). ...
1
vote
2answers
2k views
Deployment issue of an web application using MSDeploy command
I have a web application and I am trying to deploy it on a webserver using MSDeploy.exe (Web Deploy 2)
I have tried 4 scenarios:
Through VS2010 Publish method with following settings:
Publish ...
61
votes
6answers
26k views
How to Publish Web with msbuild?
Visual Studio 2010 has a Publish command that allows you to publish your Web Application Project to a file system location. I'd like to do this on my TeamCity build server, so I need to do it with the ...
0
votes
0answers
9 views
MSDeployPublish target destination Web Deploy
I'm trying to get a PowerShell script to run after Web Deploy.
This is the build target:
<Target Name="PostPublishTarget" AfterTargets="MSDeployPublish">
<Exec Command="PowerShell ...
1
vote
2answers
32 views
MSDeploy throwing weird error: Stream data of xxxxx.dll is not yet available
I am deploying a number of .Net projects to different servers. To do this my team is using TFS to build, then from the build template calling a ps1 script that uses msdeploy to push to all the ...
2
votes
1answer
42 views
How do I target an already existing application pool with webdeploy?
I am trying to make sure that my app gets deployed to a specific application pool that already exists when using weddeploy. The application pool should be configurable by the user using the GUI when ...
0
votes
0answers
31 views
TeamCity won't publish project using MsDeploy
I have msbuild command to publish my project (WCF Service Application) that looks as follow:
msbuild FooBar.Service.csproj /p:DeployOnBuild=true;
DeployTarget=MsDeployPublish;
...
0
votes
0answers
31 views
Msbuild just produces a package but does not deploy it when using a publish profile. Why?
MSBuild really seems to like me.
Recently I am trying out the different possibilities to build and deploy from command line.
However I am experiencing some seemingly strange behaviour when I pass a ...
0
votes
1answer
16 views
MSDeploy override contentPath directory with manifest
I'm trying to override the installation directory when using contentPath provider with an MSDeploy package that contains a manifest.
I'm sure I've done this in the past, but just can't get it to ...
1
vote
2answers
16 views
How can I skip deleting a folder but still sync the folder contents for an Web Deploy (msdeploy) sync?
Let's say I have a folder 'content' that (for some reason) may or may not be present in the source folder tree for a Web Deploy sync operation.
With what skip setting(s) can I have Web Deploy sync ...
1
vote
3answers
70 views
TeamCity “.Net Process Runner” hangs
We have started migrating our one of several projects to team city as part of CI. Below is how we have setup teamcity build. We are trying to deploy WebSite.
1) Build Step 1 (Package installation)
...
5
votes
3answers
2k views
Web deployment task failed. Could not connect…server did not respond
I've been publishing my Lightswitch app using Visual Studio 2012 RC to my localhost (Win 7, SQL 2008 R2, IIS 7.5) just fine. Now I'm trying to publish to a remote server (Win 2008 R2, SQL 2008 R2, IIS ...
3
votes
1answer
1k views
Deploying .NET 4.5 web app with Web Deploy
I have working ASP.NET MVC 3 application. The project is built with VS 2010 and targets .NET 4.0. Now I retargeted it to .NET 4.5 and successfully recompiled. Trying to deploy it to our test server ...
1
vote
1answer
63 views
Deploy multiple configurations from command line without changing project files
Please don't be too harsh, because I do not grasp this entirely correctly still, but msbuild/msdeploy is giving me some headaches lately.
Hopefully someone can provide a textual aspirin of some kind? ...
4
votes
1answer
1k views
How to use command line msbuild to deploy VS2012 Web Site project without precompiling it?
I've inherited a very large VS2012 web site project (not web application) and am trying to automate it's deployment. There are tons of circular references in the project so to get it to precompile ...
2
votes
2answers
30 views
msdeploy: allowuntrusted is being ignored
I have a machine [A] running fresh installation of Win2008 R2 which holds a webapp on IIS. I try to use msdeploy command line tool on machine [B] to publish a deployment package to this machine, but i ...
1
vote
1answer
69 views
VS2012 Error when creating publish package: Exception in Executing Publishing Access to path is denied
I am trying to publish an application with VS2012 and when i try and make the package i get an error that access to the path is denied. I have checked and my user has full control and verified the ...
0
votes
0answers
32 views
Add appHostAuthOverride to msdeploy package using Web Publishing Pipeline
Web Deploy 3 adds a new appHostAuthOverride provider that enables overriding of authentication settings in application's web.config.
I have a Web Application Project in VS 2012 for which I'd like to ...
0
votes
3answers
327 views
MSBuild parse item metadata
Is there anyway to modify each item in an item group? For example, given this item:
<_CustomAreas Include="..\My.Project.*\Areas\**\*.*" Condition="'$(AppBuildFolder)' == ''" />
I want to ...
1
vote
2answers
408 views
msdeploy and setparameters.xml
I'm having issue with the SetParameters.xml file used by msdeploy.
In my website I've created a parameters.xml file which contains the following:
<parameters>
<parameter ...
1
vote
0answers
24 views
How to keep web deployment package parameter values set through IIS UI across package updates?
My question is similar to this one, which remained unanswered, unfortunately.
We are rolling out a web application as a web deployment package (Web Deploy/MSdeploy) to different environments. The ...
0
votes
0answers
17 views
MSDeploy skip root web.config
I can't get msdeploy to skip only the root web.config (I want to keep any web.config files that exist in sub folders below the root)
This is the parameter I am using:
...
9
votes
2answers
2k views
Multiple skips in MSDeploy?
I'm aware of the -skip parameter, but is there any way to tell MSDeploy to skip multiple directories? Invoking the parameter multiple times does not appear to work.
0
votes
1answer
45 views
msdeploy inside visual studio publish profile
How do i use my custom msdeploy and msbuild community task script from VS 2010 web deployment project inside a visual studio 2012 publish profile?
My script in VS2010 builds to a local directory and ...
0
votes
1answer
48 views
msdeploy and AppPool running under domain user
I'm using the CompanyApp.deploy.cmd to for remote deployment of a web application package (/t:Package). The AppPool runs under a domain user (because of kerberos), not under Network Service Account.
...
1
vote
0answers
60 views
ASP.NET MVC plugin architecture & deployments
For a customer we have an ASP.NET MVC plugin architecture consisting of:
- 1 core web application (this is the root web application in IIS)
- X plugins for which the content (views, css, scripts) are ...
1
vote
1answer
67 views
web.config transform at deploy time not build
I'm wanting to know how to perform the following
Build & package an ASP.NET website to the file system
Be able to deploy the website to one or more environments. I want to the transforms of ...
0
votes
1answer
185 views
MSDeploy skip delete not working
I want to skip the deletion of the files on the \log folder on a web application running on a IIS virtual path: 'website\v2\service'
I tried the command line:
"msdeploy.exe" ...
2
votes
3answers
103 views
Prevent MSDeploy (selectively) from deleting folders on target IIS server
I have an IIS web application with a structure roughly similar to:
wwww.mysite.com
file1.asp
file2.asp
\DotNet
file3.aspx
file3.aspx
We are setting up TeamCity to do auto deployments. ...
0
votes
1answer
50 views
msdeploy via powershelll and psake fails
So I'm trying to use powershell and psake for my build and deployment. I've tried without any success to call the following psake task.
Exec { msdeploy.exe "-verb:sync"
...
1
vote
1answer
60 views
updating url rewriting rule with vs2012 web deployment web.config transformations
I can't figure out how to get my web.config deployment transformation to work for a rewrite rule. I've tried the following and it ignores it.
<?xml version="1.0"?>
<configuration ...
0
votes
0answers
17 views
MSDeploy command to sync virtual dirs and applications under a website
I have a IIS website called XYZ123 and I have several Applications and Virtual Directories under it. We are syncing the content using Rsync.
And I just want to sync the applications and virtual ...
0
votes
0answers
15 views
How to use MSDeploy to copy a file to the Windows directory?
I need a particular XML file to be copied to a web server on publish. The file needs to be in the %windir%\system32\instsrv\config\schema directory.
When I use the command-line MSDeploy.exe ...
0
votes
2answers
20 views
Webdeploy skip rule includes .css files as well as .cs
I am trying to use webdeploy in my build system. I would like it to be able to pull content files from my source code file but skip the code files. I am using a skip rule:
...
1
vote
1answer
51 views
How can I set the deployment path for an iisApp Provider using MsDeploy?
I am creating Web Deployment Package zip files for my Web Applications
I found I am able to specify the Site Name of the application by including a pubxml during the packaging of my site and using ...
0
votes
0answers
148 views
Trouble deploying the windows form app in other system
I created a windows form application using C# which enters data to a mysql database, the installer of the application works fine in local machine as well as in other system.
But i made one more ...
1
vote
0answers
32 views
MSDeploy broken on Team Build Server after Installing Visual Studio SDK
I have had nightly builds set up and working for a few months until now. I installed Visual Studio 2012 SDK on Saturday and now my builds are not deploying via MSDeploy.
My build server has Visual ...
0
votes
1answer
37 views
File.Exists fails on file in published website
Setup: MVC Web Api app, Visual Studio 2012
Folder layout:
D:\WebSites\MySite\bin\MyDLLBin\Some.dll
My application needs to LoadLibrary on an unmanaged DLL as part of a MVC Web API application. ...
9
votes
2answers
1k views
Why does this web.config transform say it can't find the applicationSettings element?
I get the following error while transforming a web.config file in TeamCity. It happens on the element, <applicationSettings xdt:Transform="Replace">.
No element in the source document ...
2
votes
1answer
50 views
Schedule a task after deployment
I need to setup a scheduled task in Windows Task Scheduler (v2.0 on Windows Server 2008 R2) right after my web site deploys.
I am using TFS 2010 to build my application, and apparently my MSBuild ...
3
votes
1answer
52 views
Creating Multiple SetParameters.xml from One Build task
I am searching for a solution that allows me to generate a Web Deploy Package and the associated deploy.cmd and SetParameters.xml.
But I need to generate a deploy.cmd and SetParameters.xml Per ...
0
votes
1answer
13 views
How do I execute a command file to upgrade existing IIS 7 web applications during a web deploy?
I want to deploy a couple of web apps but, when deploying to a server which has the existing web apps, I need to upgrade the application pools for those two web apps (to use ASP.NET 4.0).
I have an ...
0
votes
2answers
332 views
MSbuild command line parameter for skipping the directory
I have following command line parameters in team city for deployment. everything works fine but i want to skip some directory while deployment. how can i add that logic in following msbuild script in ...
0
votes
1answer
158 views
Application Pool not set when deploying msdeploy iisApp package
I'm having an issue with msdeploy not syncing application pool information for a sub application of a site (Default Web Site for example).
Essentially I was hoping I could create webdeploy/msdeploy ...
0
votes
1answer
88 views
Is there a current walkthrough on Web Deploy Installation and Configuration?
I've tried on a couple of different servers to install Web Deploy and it works to the extent that I need it to, but I haven't identified what the missing steps are.
Where it falls down is after ...


