我已经打开了一个窗口与我正在调试的网站。我不需要VS为我启动另一个每当我需要调试。
有没有办法阻止这种行为?
我已经打开了一个窗口与我正在调试的网站。我不需要VS为我启动另一个每当我需要调试。
有没有办法阻止这种行为?
当前回答
如果您在IIS中使用Web发布特性,那么我发现的解决方案是编辑发布配置并从配置中删除Destination URL(让它为空)。
如果定义了这个,那么每次发布项目时,它都会打开Destination URL中指定的URL(这是一个重定向URL)。
参考:https://support.winhost.com/kb/a1604/visual-studio-publish-web-deploy.aspx
其他回答
CTRL+ALT+ENTER如果你的修正是前端
http://blogs.msdn.com/b/webdev/archive/2013/06/28/browser-link-feature-in-visual-studio-preview-2013.aspx
There seems to be one case in which none of the above but the following helps. I'm developing a project for Windows Azure cloud platform and I have a web role. There is indeed a radio button Don't open page in Project -> {Project name} properties... as was pointed out by Pawel Krakowiak, but it has no effect in my case whatsoever. However, there is the main cloud project in solution explorer and there is the Roles folder under it. If I right click my web role in this folder and choose Properties, I get another set of settings and on the Configuration tab there is the Launch browser for flag, after unchecking it a new browser window is not opened on application start up.
由于我的VS (Visual Studio Enterprise 2017)中没有上述选项,我不得不寻找其他选项。
以下是我的发现:
进入“工具->选项->调试”选项卡(通用),取消选中“为Asp启用JavaScript调试”。Net(Chrome和IE)。
以下是对我有用的方法:
去项目属性>调试>取消“启动浏览器”>保存。
看起来2022年的维密秀已经改变了,
现在它有一个专门的用户界面,
右键单击项目(在解决方案资源管理器中)>选择属性,然后遵循:-
“uncheck”选项不自动打开。
或者您可以单击菜单栏,调试>属性
你可以直接从那里到达第二步“启动配置文件”
或者一个捷径:
选择项目(在解决方案资源管理器中)并按Alt + Enter,然后从那里开始。