msbuild - TFS build step WriteCustomSummaryInfo with Replace -
how run "replace" within writecustomsummaryinfo step.
i'm trying display link html report on build summary:
get drop location do:
\tfsbuild03\temp\dev-deployment\dev-deployment_20160115.22
replace \ / , append report.html @ end
i assume way it.
i've tried following doesn't work:
string.format("dotcover [coverage results]file:({0})/{1}", replace(droplocation,"\","/"), "report.html")
i figured out. it's suppose this:
string.format("dotcover [coverage results]file:({0})/{1}", droplocation.replace("\", "/"), "report.html")
Comments
Post a Comment