Visual Studio 如何设置活动测试设置
你好 我的问题是关于如何在 Visual Studio 2010 的项目文件中设置活动测试设置,我的意思是,Visual Studio 在解决方案文件中修改什么标志或条目,或者该设置在哪里。 我正在开发一个解决方案文件生成器,但找不到自动选择所需测试设置作为默认设置的方法
Hi
My question is about how can i set the active test settings in the project file for visual studio 2010, I mean, what flag or entry does the visual studio modify in the solution file or where is that setting.
Im developing a solution file generator but cant find the way to auto select the required test settings as the default settings
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果在菜单项“测试 > 选择活动测试设置”或“测试 > 编辑测试设置”下没有看到任何内容,请检查解决方案资源管理器窗口中“解决方案项目”文件夹下是否有以“.testsettings”结尾的文件。
如果没有任何 .testsettings 文件,您可以右键单击“解决方案项目”或“解决方案”文件夹,然后单击“添加”,然后选择“新建项目”。在“已安装的模板”下选择“测试设置”。选择“测试设置”模板,命名文件,然后单击“添加”按钮。现在,这已成为您解决方案的一部分,并出现在“测试 > 选择活动测试设置”和“测试 > 编辑测试设置”菜单项中。
If you do not see anything under the Menu Item "Test > Select Active Test Settings" or "Test > Edit Test Settings", Check your Solution Explorer window for files ending with ".testsettings" under the "Solution Items" folder.
If there are not any .testsettings files, you can right click the "Solution Items" or "Solution" folder, then click on "Add" then select "New Item". Under the "Installed Templates" select "Test Settings". Select the "Test Settings" template, name the file, and click the "Add" button. This is now part of your solution and now appears in the "Test > Select Active Test Settings" and "Test > Edit Test Settings" menu items.
如果没记错的话,活动测试设置将存储在 .vsmdi 文件中,而不是解决方案文件中。
编辑:具体来说,它是 .vsmdi 文件中 RunConfiguration 元素的“存储”属性。
If memory serves, the active test settings is stored in the .vsmdi file, not the solution file.
Edit: specifically, it is the "storage" attribute on the RunConfiguration element in the .vsmdi file.