webdeploy

What is expected for DeployIisAppPath setting on MSBuild argument?

自古美人都是妖i 提交于 2019-12-19 06:46:30
问题 SERVERNAME(myDomain\Username) Application Pools Sites DEV Site1 DEV Site2 dev Site 3 bin Content ... Views etc ... This is my basic layout of our DEV web server. Our DEV web server has many sites running on it. I am trying to use TFS 2013 Build to publish my web site to the DEV server following articles from Vishal Joshi, Microsoft and others. My error is "ERROR_SITE_DOES_NOT_EXIST". The basic fix does not help me. In my example, I'm using /p:DeployIisAppPath="dev Site 3" . There are no

What is expected for DeployIisAppPath setting on MSBuild argument?

雨燕双飞 提交于 2019-12-19 06:46:01
问题 SERVERNAME(myDomain\Username) Application Pools Sites DEV Site1 DEV Site2 dev Site 3 bin Content ... Views etc ... This is my basic layout of our DEV web server. Our DEV web server has many sites running on it. I am trying to use TFS 2013 Build to publish my web site to the DEV server following articles from Vishal Joshi, Microsoft and others. My error is "ERROR_SITE_DOES_NOT_EXIST". The basic fix does not help me. In my example, I'm using /p:DeployIisAppPath="dev Site 3" . There are no

Where is MsDeployPublish located?

拟墨画扇 提交于 2019-12-18 04:44:04
问题 When trying to deploy my site using TeamCity and Web Deploy I get this error: error MSB4057: The target "MsDeployPublish" does not exist in the project. Is there something I have to install on a build server? It's a clean Windows Server 2012 with Web Deploy 3.5 installed. 回答1: I realise this question is quite old at this point, but: MsDeployPublish is installed with the Web Application targets as part of Visual Studio. If you have only installed Server + Web Deploy, you'll need to either copy

Transforming files with msdeploy

天涯浪子 提交于 2019-12-18 03:00:27
问题 Can I use the config transforms mechanism of MSDeploy to transform other files? 回答1: (another approach) The msdeploy packaging is jsut invoked during an MSbuild run for your project. TransformXml is an included task of a .csproj or .vsproj build. Just modify your build process to invoke that task on whatever file you need. For example, what we do is write a custom target <Target Name="TransformFile"> <TransformXml Source="$(DestinationPath)\$(Sourcefile)" Transform="$(DestinationPath)\$

How to tell TFS to deploy multiple webapps containing in one solution?

坚强是说给别人听的谎言 提交于 2019-12-17 22:35:29
问题 We have a single solution which contains one webapp project and some accompanying projects. Our TFS 2010 is building this solution every night and deploys the webapp to an IIS server. It runs like a breeze. In the Process tab of the TFS build definition you can specify the "MSBuild Arguments". This is the value which is set in our build definition (all in one line): /p:DeployOnBuild=True /p:DeployTarget=MsDeployPublish /p:CreatePackageOnPublish=True /p:MSDeployPublishMethod=WMSVC /p

Missing “Import Web Application” option in Web Deploy 3.6

女生的网名这么多〃 提交于 2019-12-17 22:34:27
问题 Using Web Deploy 3.6 both on IIS 8.5 (Windows Server 2012 R2) and IIS 7.5 (Windows 7), I cannot find the Deploy -> "Import Web Application" option. The "Export Web Application" is also missing (see screenshot) I can still see the "Install Application from Gallery" but that does not really help. All works fine with Web Deploy 3.5. Are the Import / Export Web Application options removed in 3.6? If yes, what is the alternative to deploy a standard ASP.NET MVC app to IIS 8.5 with Web Deploy 3.6?

msdeploy cannot reach destination despite having web deployment service started

不想你离开。 提交于 2019-12-13 16:22:54
问题 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 have bridged the VMs network adapter. I have installed and started the "Web Deployment Agent Service" as well as the "Web Management Service". I also created a new IIS manager user and granted him access to the website in question. Now deploying itself works when I do it like this for example: msbuild

Include files in MSBuild that are not part of project

谁说我不能喝 提交于 2019-12-13 06:27:28
问题 I'm trying to create an automated build for my web application project. We use a standard CMS project and have tweaked some parts of it. Only the tweaked files are part of our project, but I want to include the full CMS in the deployment package. So I've created a custom .targets file to define a task to include the CMS files during the build: <Target Name="GetCMSFiles"> <ItemGroup> <!-- Include the CMS files into the package --> <_CMSFiles Include="..\packages\CMSFiles\**\*" />

Is FIPS compliance REQUIRED for TLS 1.2 communication in Windows?

馋奶兔 提交于 2019-12-13 01:51:45
问题 Ok, this has been an ongoing issue for some time. I have been experimenting for a couple of months now and so far the only way I can get my applications to communicate with Windows Server 2008 R2 is to enable the "Use FIPS Compliant algorithms for encrypting, hashing, and signing" setting in the Group Policy of both the client and server machines. Once that is turned on (TLS 1.2 enabled and TLS 1.0 disabled in the registry of both client and server) it works. But, my dilemma is that I don't

How to parametrize DeployIisAppPath Msbuild argument in Tfs Build

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-12 12:21:34
问题 I am using Tfs 2012 to build/deploy our Asp.Net web apps. We have a build definition that builds 5 solutions (.sln files). This is how our MsBuild arguments look like: /p:DeployOnBuild=True /p:AllowUntrustedCertificate=True /p:DeployIisAppPath="Test" /p:DeployTarget=MsDeployPublish /p:CreatePackageOnPublish=True /p:MSDeployPublishMethod=WMSVC /p:MSDeployServiceUrl="https://{server}:8172/msdeploy.axd" /p:UserName="{user}" /p:Password="{password}" I need to deploy all 5 sites with Web Deploy