我正在尝试使用 MSBuild 社区任务从 OutputPath 的末尾删除斜线
这就是我到目前为止所拥有的。
<RegexReplace Input="$(OutputPath)" Expression="\$" Replacement="" Count="1">
<Output ItemName="FormattedOutputPath" TaskParameter="Output" />
</RegexReplace>
<Message Text="@(FormattedOutputPath)"/>
不幸的是,该消息只是返回我的路径,最后仍然带有斜杠。路径是 C:\MyDirectory\
看来我的表达不正确
任何人都可以帮忙吗?