测试设置中的 MsTest DeploymentItem OutputDirectory
在 testsettings 中创建 DeploymentItem 时如何指定输出目录?当您将 DeploymentItem 属性应用于方法或类时(有一个特殊的构造函数参数),这很容易,但我没有看到在测试设置中应用它的方法(甚至 UI 也不包含类似的内容)。
How can I specify output directory when I create DeploymentItem in testsettings? It is easy when you apply DeploymentItem attribute to method or class (there is a special constructor parameter) but I don't see a way to apply it in testsettings (and even UI doesn't contain anything like this).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试从 VS 或使用 XML 编辑器编辑 testrunconfig 文件 - 右键单击并选择打开方式,然后添加如下一行:
Try editing the testrunconfig file either from VS or using an XML editor - right-click and choose open with and add a line like this one:
在 Visual Studio 2010 中:
关闭 Visual Studio 2010
转到 Windows 资源管理器中的项目根目录
打开 .testsettings 文件
找到此行:
将其更改为所需的输出目录:
再次启动 Visual Studio 2010 :-)
对于 Visual Studio 2012:
http://msdn.microsoft.com/en-us/library/ee256991.aspx
2010年至2012年升级:
http://msdn.microsoft.com/en-us/library/hh507838.aspx
In visual studio 2010:
Close Visual Studio 2010
Go to your project root directory in windows explorer
Open the .testsettings file
Locate this line:
change it to the output directory that you want:
Start Visual Studio 2010 again :-)
For Visual Studio 2012:
http://msdn.microsoft.com/en-us/library/ee256991.aspx
Upgrading from 2010 to 2012:
http://msdn.microsoft.com/en-us/library/hh507838.aspx