在 Visual studio 2010 上启动新实例
在我的 VS2010 中,我有一个包含 2 个项目的“解决方案”。 Test(我的默认项目)和“Db”(由 Test 调用/使用的 dll)
我已将 CTRL-F5 映射到“启动新实例”以进行调试。
如果我的活动文档(.cpp)属于Test,则一切正常,调试器正常运行。
但是,如果我的焦点文档属于“Db”项目,我会收到以下消息:“无法启动 db.dll”,
因此我必须右键单击我的“测试”项目,然后在上下文菜单中选择“启动新实例” :(
事实上,我希望有与旧 VC6 相同的行为:)
知道用键盘来做到这一点吗? (猜测的宏)
谢谢
In my VS2010, I have a "Solution" which contains 2 projects.
Test (my default project) and "Db" (a dll called/used by Test)
I've mapped CTRL-F5 on "Start new instance" for debug purpose.
If my active document (.cpp) belongs to Test, everything is ok, the debugger runs normally.
But if my focused document belongs to the "Db" project, I get the following message : "Unable to start db.dll"
So I have to right click on my "Test" project a select in the context menu "Start new instance"
:(
In fact I would like to have the same behavior than the old VC6 :)
Any idea of to do this with the keyboard ? (a macro in guess)
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在默认的 VS 键盘映射中已经可用。如有必要,右键单击您的测试项目并选择“设置为启动项目”。这使得它以粗体显示。现在,无论 IDE 中的活动是什么,按 F5 始终会启动您的测试项目。同样,Ctrl+F5 的默认键盘映射始终在不使用调试器的情况下启动此项目。
This is already available in the default VS keyboard mapping. If necessary, right-click your Test project and select "Set as Startup Project". Which makes it displayed in bold type. Pressing F5 now always starts your Test project, regardless what is active in the IDE. Similarly, the default keyboard mapping for Ctrl+F5 always starts this project without the debugger.