在msbuild中使用正则表达式编辑xml?

发布于 2024-12-11 01:27:30 字数 84 浏览 0 评论 0原文

我正在使用 msbuild 脚本。我想在 msbuild 中使用正则表达式注释特定行。请帮助我解决这个问题?请给出一个除了使用正则表达式编辑版本之外的示例

i am working with msbuild script.i want to comment particular line using regular expression in msbuild .pls help me to solve this issue??please give one example other than editing version using regular expression

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

简单爱 2024-12-18 01:27:30

您可以使用 FileUpdate MSBuild 社区任务 来执行此操作:

文件更新
使用正则表达式替换文件中的文本

<ItemGroup>
   <FilesToBeUpdated Include="/Output/test.xml" />
</ItemGroup>

<FileUpdate
   Files="@(FilesToBeUpdated)"
   Regex="..."
   ReplacementText="..." />

You can do this using FileUpdate MSBuild Community Tasks:

FileUpdate
Replace text in file(s) using a Regular Expression

<ItemGroup>
   <FilesToBeUpdated Include="/Output/test.xml" />
</ItemGroup>

<FileUpdate
   Files="@(FilesToBeUpdated)"
   Regex="..."
   ReplacementText="..." />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文