XMLMASSUPDATE MSBUILD Tigris 任务

发布于 2024-08-01 20:57:15 字数 116 浏览 2 评论 0原文

我正在尝试使用 xmlmassupdate 的 msbuild 任务将编译器选项属性从值设置为空白。 不幸的是,它只是改变了 c#(第一个),而不是第二个。 有谁知道 xmlmassupdate 执行此操作的语法?

I am trying to set the compiler options attribute from a value to blank using the msbuild task of xmlmassupdate. Unfortunately it is only changing the c# (the first one) and not the second one. Does anyone know the syntax for xmlmassupdate to do this?

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

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

发布评论

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

评论(1

﹎☆浅夏丿初晴 2024-08-08 20:57:15

您的问题似乎与此处描述的问题类似:
堆栈溢出:MSBuild XmlMassUpdate 任务

基本上,当父节点中有多个子节点时,您必须提供一个键,更新将通过该键使用 xmu:key 属性找到您的节点,例如:

 xmu:key="nameOfTheAttribute" 

其中 nameOfTheAttribute 是标识子节点的属性

Your problem seems similar to the one described in here:
Stack overflow: MSBuild XmlMassUpdate Task.

Basically, when you have more than one child node inside a parent, you have to provide a key by which the update is going to find your node using xmu:key attribute like:

 xmu:key="nameOfTheAttribute" 

where nameOfTheAttribute is the attribute that's identifying the child node

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