加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

msdeploy setParameters.xml,如何设置web物理文件位置

发布时间:2020-12-16 22:51:42 所属栏目:百科 来源:网络整理
导读:这个问题已经跳了一下,请原谅我,如果它是重复但我无法找到确切的答案. 我正在尝试为部署配置创建一个Parameters.xml,用于指定网站的目标物理文件文件夹.这适用于使用TeamCity的自动构建,例如命令行使用.deploy.cmd. 有人可以解释我需要做什么吗? 的paramete
这个问题已经跳了一下,请原谅我,如果它是重复但我无法找到确切的答案.

我正在尝试为部署配置创建一个Parameters.xml,用于指定网站的目标物理文件文件夹.这适用于使用TeamCity的自动构建,例如命令行使用.deploy.cmd.

有人可以解释我需要做什么吗?

的parameters.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:MyFolderMySite" />

我怀疑我的问题在于我如何宣布范围但不确定需要做什么.

解决方法

假设默认网站/ iag.application.services.exampleservice是IIS中的虚拟目录(DestinationVirtualDirectory仅对“应用程序”有效),您可能只是删除/后缀而不是编码它. (我也删除了匹配属性)

<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:MyFolderMySite" />

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读