在 Visual Studio 2010 中调试时启动多个项目
在 Visual Studio 2010 中,我有一个 Web 应用程序和一个控制台应用程序(实际上是使用 NServiceBus 的服务,但它作为控制台应用程序在本地运行),我希望在单击“调试”时启动它们。
现在,我将 Web 应用程序设置为启动应用程序,并在浏览器中打开它,然后右键单击我的服务并转到“调试”->“调试”。启动新实例。这工作正常,但我宁愿不手动执行此操作,因为我有时会忘记并需要运行服务来处理来自网站的消息。
谢谢。
In Visual Studio 2010, I have a web application and a console application (actually a service using NServiceBus, but it runs locally as a console application) that I want to both startup when I hit Debug.
Right now I have the Web Application set as the startup application and it opens in a browser, then I right click on my Service and go to Debug -> Start new instance. This works fine, but I would rather not do it manually because I sometimes forget and need the Service running to handle messages from the website.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过右键单击解决方案资源管理器上的解决方案节点并从菜单中选择“属性”来选择要启动的多个项目和顺序来启动多个项目。选择“多个启动项目”单选按钮,然后为所需项目选择“启动”操作。
You can start multiple projects by choosing multiple projects to start and the order by right clicking on the solution node on the solution explorer and selecting Properties from the menu. Select the radio button for "Multiple startup projects" and choose the action as Start for the required projects.