我们的部署过程将使使用参数文件为部署提供计算机名变得更加容易。
我一直在阅读文档,declareParam
并且setParam
我已经尝试过使用 kind=DeploymentObjectAttribute,但是我无法确定这是否是它的意思(它是唯一的参数类型,似乎它可能是我需要的)。
例如,代替此命令:
msdeploy.exe ... -dest:auto,computerName=PLUTO
我想使用这个命令:
msdeploy.exe ... -dest:auto -setParamFile:C:\Params.xml
并具有以下 Params.xml 文件:
<parameters>
<setParameter name="ComputerName" value="PLUTO" />
</parameters>