TFS构建步骤WriteCustomSummaryInfo with Replace

时间:2016-01-15 22:27:39

标签: tfs msbuild build-process tfs2013

我将如何运行"替换"在WriteCustomSummaryInfo步骤中。

我试图在构建摘要中显示指向html报告的链接:

  • 获取我所做的放置位置:

    \ tfsbuild03 \ TEMP \开发 - 部署\开发-Deployment_20160115.22

  • 将所有\替换为/并在末尾添加 report.html

我认为这是做到这一点的方法。

我已经尝试了以下但是它不起作用:

String.Format("dotCover [Coverage Results]file:({0})/{1}", Replace(DropLocation,"\","/"), "report.html")

EDIT enter image description here

1 个答案:

答案 0 :(得分:0)

我明白了。它应该是这样的:

String.Format("dotCover [Coverage Results]file:({0})/{1}", DropLocation.Replace("\", "/"), "report.html")