Nunit 测试配置文件被覆盖

发布于 2024-12-07 16:33:42 字数 368 浏览 0 评论 0原文

我有一个名为 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 技术交流群。

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

发布评论

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

评论(1

稀香 2024-12-14 16:33:42

这似乎解决了它。我添加了以下构建后事件。

复制 /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”

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