[vs] - Asp.Net Core Web项目debug启动后闪退

场景

使用Visual Studio 2019做个Asp.Net Core Web的小demo。不知道动了哪里的配置,导致项目启动失败。具体情况如下:
在vs中使用InProcess与IIS方式。编译通过,能正常启动,但是启动成功后闪退,没有明确的错误代码。
[vs] - Asp.Net Core Web项目debug启动后闪退_第1张图片

解决方案

  1. 在VS里的Output窗口看日志。发现如下信息:
Chrome error: Error: spawn C:\Program Files (x86)\Google\Chrome\Application\chrome.exe EACCES
The program '' has exited with code -1 (0xffffffff).
The program '[8964] dotnet.exe' has exited with code -1 (0xffffffff).
  1. 因为这是目前能找到的唯一错误。所以我先尝试把debug启动的web broswer改为其他浏览器,重新运行后成功。
  2. 所以可以肯定是这个默认启动浏览器chrome启动失败造成的debug行为无法继续。
  3. 这里的报错是Chrome的跨域调试问题。取消勾选vs->Debugging->General->“Enable javaScript Debugging for ASP.NET(Chrome, Edge and IE)”
  4. 或者在vs->Options->Projects and Solutions->Web Projects->取消勾选"Stop debugger when broswer windows is closed, close broswer when debugging stops"(浏览器窗口关闭时停止调试器)。这个设置导致了因chrome.exe启动失败而中断debug的操作。

你可能感兴趣的:(错误处理,IDE,C#/.NET)