MSBuild to NUnit transform (VS2010)

萝らか妹 提交于 2020-01-25 11:23:48

问题


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?)


回答1:


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.



来源:https://stackoverflow.com/questions/5537461/msbuild-to-nunit-transform-vs2010

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!