Visual Studio 2017 error: Unable to start program, An operation is not legal in the current state

前端 未结 20 2389
醉话见心
醉话见心 2020-12-12 08:43

After fresh installation of Visual Studio 2017 I tried to run .NET Core Web project and when trying to run it on Chrome I am getting this error:

Unabl

20条回答
  •  温柔的废话
    2020-12-12 09:18

    I had the same problem after the most recent VS 2017 update (released March 14, 2017: build 26228.09). My program would debug fine in IE but would bomb out in Chrome. Killing all instances of Chrome within the Windows command line fixed the problem for me.

    taskkill /im chrome.exe /f
    

    I was then able to debug in Chrome.

提交回复
热议问题