0
C:\CCNet\*\WorkingDirectory\build\*_NUnit.targets (17,5):

errorMSB3073: The command ""C:\CCNet\*\WorkingDirectory\build\..\src\packages\NUnit.Runners.2.6.2\tools\nunit-console.exe" *.Tests.dll /xml:nunit-results.xml /noshadow /framework=v4.0.30319" exited with code -100.

可能是什么?在本地机器上运行测试并长期运行(而不是全部)或起飞。并且无法运行服务器机器测试。

4

2 回答 2

0

该错误MSB3073通常表示某种权限问题。运行构建的任何帐户\用户是否有权访问文件nunit-results.xml应该复制到的位置?

另外,这条路很长吗?通常有 256 个字符的限制(请记住,您机器上的路径可能更短)。

于 2013-08-16T09:55:01.720 回答
0

我通过错误地传递排除的类别来体验这一点。

...nunit-console.exe ... /exclude:Integration Tests,Integration ...

存在空格时应包括引号:

...nunit-console.exe ... /exclude:"Integration Tests",Integration ...
于 2016-03-17T15:22:26.993 回答