4

这个问题已经绕了一点,如果它是重复的,请原谅我,但我无法找到确切的答案。

我正在尝试为指定网站的目标物理文件夹的部署配置创建一个 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" />

我怀疑我的问题在于我如何声明范围,但不确定需要做什么。

4

1 回答 1

3

假设Default Web Site/iag.application.services.exampleservice是 IIS 中的虚拟目录(DestinationVirtualDirectory仅对“应用程序”有效),您可能只需删除/后缀而不对其进行编码即可。(我也删除了match属性)

<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" />
</parameter>

请记住,您不必在设置参数之前声明参数。您可以轻松地声明完整参数并同时设置它:

<setParameter name="physicalPathLocation" 
              kind="DestinationVirtualDirectory" 
              scope="Default Web Site/iag.application.services.exampleservice" 
              value="C:\MyFolder\MySite" />
于 2012-09-25T05:16:08.423 回答