NUnit 因 System.ArgumentException 失败:net-4.0 框架不可用

发布于 2024-08-29 04:33:19 字数 628 浏览 5 评论 0原文

例外: 流程模型:默认域用法:单个 执行运行时:net-4.0 未处理的异常: System.ArgumentException:net-4.0框架不可用 参数名称:框架 在NUnit.Util.TestAgency.GetAgent(RuntimeFramework框架,Int32 waitTime,布尔enableDebug) 在NUnit.Util.ProcessRunner.Load(TestPackage包) 在 NUnit.ConsoleRunner.ConsoleUi.Execute(ConsoleOptions 选项) 在 NUnit.ConsoleRunner.Runner.Main(String[] args)

OS Winserver 2008 R2 x64

Nunit 2.5.4.10098

测试组装 专为 .net 4.0 RTM (v4.0.30319) 构建

命令行 nunit-console.exe NServiceBus.Config.UnitTests.dll /framework=net-4.0

有什么想法吗?

Exception:
ProcessModel: Default DomainUsage: Single
Execution Runtime: net-4.0
Unhandled Exception:
System.ArgumentException: The net-4.0 framework is not available
Parameter name: framework
at NUnit.Util.TestAgency.GetAgent(RuntimeFramework framework, Int32 waitTime, Boolean enableDebug)
at NUnit.Util.ProcessRunner.Load(TestPackage package)
at NUnit.ConsoleRunner.ConsoleUi.Execute(ConsoleOptions options)
at NUnit.ConsoleRunner.Runner.Main(String[] args)

OS
Winserver 2008 R2 x64

Nunit
2.5.4.10098

Test assembly
Built for .net 4.0 RTM (v4.0.30319)

Commandline
nunit-console.exe NServiceBus.Config.UnitTests.dll /framework=net-4.0

Any ideas?

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

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

发布评论

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

评论(2

记忆之渊 2024-09-05 04:33:19

结合 Kev 的建议(将 /framework=4.0.30319 添加到参数列表中)
并使用以下内容修改 nunit-console.exe.config:

 <configuration>

添加:

<startup>  <requiredRuntime version="v4.0.30319" /></startup>

下添加:

 <legacyUnhandledExceptionPolicy enabled="1" />

Combine Kev's advice ( add /framework=4.0.30319 to the parameter list)
and modify nunit-console.exe.config with the following:

under

 <configuration>

add:

<startup>  <requiredRuntime version="v4.0.30319" /></startup>

under <configuration><runtime> add:

 <legacyUnhandledExceptionPolicy enabled="1" />
别闹i 2024-09-05 04:33:19

我在 CC.net 上也遇到了同样的问题。

我现在使用争论 /framework=4.0.30319 从 NAnt 运行 NUnit

希望这对

Kev有帮助

I was having the same issue with CC.net.

I now run NUnit from NAnt using the arguement /framework=4.0.30319

Hope this helps

Kev

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