这个问题已经绕了一点,如果它是重复的,请原谅我,但我无法找到确切的答案。
我正在尝试为指定网站的目标物理文件夹的部署配置创建一个 Parameters.xml。这适用于使用 TeamCity 的自动构建,例如使用 .deploy.cmd 的命令行。
有人可以解释我需要做什么吗?
参数.xml:
<parameter name="physicalPathLocation" description="Physical path where files for this Web service will be deployed." defaultValue="\" tags="PhysicalPath">
<parameterEntry kind="DestinationVirtualDirectory" scope="Default\ Web\ Site/iag\.application\.services\.exampleservice/" match="" />
</parameter>
并在 SetParameters.xml
<setParameter name="physicalPathLocation" value="C:\MyFolder\MySite" />
我怀疑我的问题在于我如何声明范围,但不确定需要做什么。