多个 ASP.NET 开发服务器端口
我的解决方案中有一些项目和网站。当我调试网站时,所有网站的端口都会打开。我认为这会减慢我的调试速度。如何关闭这些额外的端口而不是从解决方案中排除网站?
I've got a few projects and websites in my solution. When I debug a website, ports are opened for all the websites. I'm thinking this slows down my debugging. How do I switch off these extra ports rather than excluding the websites from the solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您想要做的是:
将每个网站项目的“
调试时始终启动
”属性设置为“false
”。只需单击解决方案资源管理器中的项目,然后按 F4。这是列表中的第一个属性。我有同样的问题,这解决了我的问题!
I think what you want to do is this:
Set the "
Always Start When Debugging
" property to "false
" for each of your website projects. Just click the Project in the Solution Explorer, hit F4. It's the first property in the list.I had the same problem and this solved my problem!