我们的部署过程可以更轻松地使用参数文件为部署提供computerName。
我一直在阅读documentation for declareParam
and 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>