TFS 构建步骤 WriteCustomSummaryInfo 与 Replace
TFS build step WriteCustomSummaryInfo with Replace
我如何在 WriteCustomSummaryInfo 步骤中 运行 "Replace"。
我正在尝试将 link 显示到关于构建摘要的 html 报告:
获取我做的放置位置:
\tfsbuild03\temp\Dev-Deployment\Dev-Deployment_20160115.22
把所有的\换成/,在最后追加report.html
我想这就是方法。
我已经尝试了以下但它不起作用:
String.Format("dotCover [Coverage Results]file:({0})/{1}", Replace(DropLocation,"\","/"), "report.html")
编辑
我明白了。应该是这样的:
String.Format("dotCover [Coverage Results]file:({0})/{1}", DropLocation.Replace("\", "/"), "report.html")
我如何在 WriteCustomSummaryInfo 步骤中 运行 "Replace"。
我正在尝试将 link 显示到关于构建摘要的 html 报告:
获取我做的放置位置:
\tfsbuild03\temp\Dev-Deployment\Dev-Deployment_20160115.22
把所有的\换成/,在最后追加report.html
我想这就是方法。
我已经尝试了以下但它不起作用:
String.Format("dotCover [Coverage Results]file:({0})/{1}", Replace(DropLocation,"\","/"), "report.html")
编辑
我明白了。应该是这样的:
String.Format("dotCover [Coverage Results]file:({0})/{1}", DropLocation.Replace("\", "/"), "report.html")