如何使用XmlPeek任务?
我在 MSDN MSBuild 任务参考中阅读了有关 XmlPeek 任务的内容 http://msdn.microsoft.com/en-us/library/ff598684(v=VS.100).aspx 但我无法在我的 MSBuild 脚本中使用它。如果您以前使用过此功能,请告诉我如何操作!
I've read in the MSDN MSBuild Task Reference about XmlPeek task at http://msdn.microsoft.com/en-us/library/ff598684(v=VS.100).aspx
but I cannot use it in my MSBuild script. If you have used this before, please show me how!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XmlPeek 任务仅在 MSBuild for .NET 4 中可用。因此,您需要使用 MSBuild v4.0 并在 msbuild 文件中指定您正在使用的工具版本。
这是一个示例项目文件,我们在其中查找消息节点。
The XmlPeek task is only available in MSBuild for .NET 4. So you need to use MSBuild v4.0 and specify in your msbuild file the tool version you are using.
Here a sample project file, where we are looking for the message node.