Nunit 测试配置文件被覆盖
我有一个名为 Tests 的 Nunit 测试程序集。关联的配置文件称为 Tests.dll.config。在 VS2008 中,我将 Test.dll.config 设置为“始终复制”。问题是,当我构建解决方案时,调试或发布目录中的 Tests.dll.config 文件仅包含以下内容:
<?xml version="1.0"?>
<configuration>
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
包含我的设置的 Tests.dll.config 不会被复制。
I have an Nunit test assembly called Tests. The associated configuration file is called Tests.dll.config. In VS2008 I have the Test.dll.config set "copy always". The problem is when I build the solution the Tests.dll.config file in the Debug or Release directory contains only this:
<?xml version="1.0"?>
<configuration>
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
The Tests.dll.config that has my settings in is not copied across.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎解决了它。我添加了以下构建后事件。
复制 /Y “$(ProjectDir)Tests.dll.config” “$(TargetDir)$(TargetFileName).config”
This seemed to fix it. I added the following post-build event.
copy /Y “$(ProjectDir)Tests.dll.config” “$(TargetDir)$(TargetFileName).config”