MSBuild 到 NUnit 转换 (VS2010)

发布于 2024-10-29 11:12:10 字数 218 浏览 0 评论 0原文

我尝试使用在此SO问题中提到的xslt将MSTest trx转换为NUnit Xml (为了解决 Bamboo 中 MStest 输出的错误)但似乎没有什么乐趣。

VS2010 的 trx 格式是否不同? (或者只有我这样?)

I tried to use the xslt mentioned in this SO question to turn MSTest trx into NUnit Xml (to get round a bug with MStest output in Bamboo) but seem to have no joy.

Is the trx format different for VS2010 ? (or is it just me?)

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

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

发布评论

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

评论(1

绝不放开 2024-11-05 11:12:10

命名空间已更改。只需替换

        xmlns:t="http://microsoft.com/schemas/VisualStudio/TeamTest/2006"

        xmlns:t="http://microsoft.com/schemas/VisualStudio/TeamTest/2010"

即可。

The namespace has changed. Just replace

        xmlns:t="http://microsoft.com/schemas/VisualStudio/TeamTest/2006"

with

        xmlns:t="http://microsoft.com/schemas/VisualStudio/TeamTest/2010"

and it should work.

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