Azure-devops-docs: Additional Web Deploy arguments

Created on 18 Jul 2018  Â·  2Comments  Â·  Source: MicrosoftDocs/azure-devops-docs

You state:
Additional Web Deploy arguments that will be applied when deploying the Azure Web App like,-disableLink:AppPoolExtension -disableLink:ContentExtension

but where is the complete list??


Document Details

⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

devopprod

All 2 comments

@pkzOR - the task relies on -verb:sync to synchronize the destination with the source. You can use the MSDeploy.exe options that are supported with sync on an application site.

For example,
PS C:\Program Files (x86)\IIS\Microsoft Web Deploy V3> .msdeploy.exe /?
Microsoft (R) Web Deployment Command Line Tool (MSDeploy.exe)
Version 7.1.1992.0
Copyright (c) Microsoft Corporation. All rights reserved.

MSDeploy.exe <-verb:> <-source:> [-dest:] [args ...]

-verb: Action to perform (required).
-source: The source object for the operation (required).
-dest: The destination object for the operation.
-declareParam: Declares a parameter for synchronization.
-setParam: Sets a parameter for synchronization.
-disableLink: Disables the specified link extension(s).
-enableLink: Enables the specified link extension(s).
-disableRule: Disables the specified synchronization rule(s).
-enableRule: Enables the specified synchronization rule(s).
...

Is it possible to disable to deployment of config file and keep the one on the server by using these Additional Web Deploy arguments ?

Was this page helpful?
0 / 5 - 0 ratings