ChatGPT解决这个技术问题 Extra ChatGPT

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

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:

Unable to start program, An operation is not legal in the current state

can you start the application using the commandline and see what errors you get? dotnet run (first dotnet restore and dotnet build and then you can run)
@JoelHarkes After I closed and re-opened Visual Studio 2017 it works now. Don't know what caused the problem but not it is solved.
Maybe it was thinking it was still preparing the application. or something.
I tried closing/reopening, didn't work -- is still happening
Seems to be specific to Chrome - FF, Opera, Brave, IE all launch OK.

M
Maria Ines Parnisari

For me, the solution (workaround) is to turn off JavaScript debugging on Chrome, which I believe is a new feature introduced in VS 2017.

Go to Tools > Options > Debugging > General and turn off the setting for Enable JavaScript Debugging for ASP.NET (Chrome and IE).

https://i.stack.imgur.com/jPqw8.png

This is a known issue already, and seems to have an investigation underway.

Full information about JS debugging in VS 2017 here: https://blogs.msdn.microsoft.com/webdev/2016/11/21/client-side-debugging-of-asp-net-projects-in-google-chrome/


If you disable this, you will no longer be able to debug your client side code in Visual Studio. I have done some workaround to resolve this issue. You can see that in my answer. Thanks
FYI, Microsoft has fixed the issue and the fix is now available in their latest VS update. developercommunity.visualstudio.com/solutions/93579/view.html
You are the champ of champs! Thanks for the quick solution.
Just ran in to this issue and this solved it, thanks. It also stops VS from opening debugging in a whole new browser window, and opens the site in a new tab, which is what I preferred with VS 2015!
This is still not fixed btw. Just had to do it for 15.4
A
ArunPratap

Today I got this error, and I just did a small workaround which was too simple.

Close all of your chrome instances, that you might have opened before you opened Visual Studio. Now stop debugging and run your application again.

You will not get the error again and if the debugger doesn't hit, refresh the browser again.

Update (12-Dec-2018):

I just tested this bug in Visual Studio 2019 preview, it seems like the bug is fixed now.

Hope this helps.


It took a couple of tries, but it did work. Hopefully they can figure out a permanent solution, instead of having to close everything every time
I had multiple instances of Chrome open. I only closed the one that I was using to debug. I did not restart VS2017. It worked. Thanks! This should be the accepted answer since I can still debug in Chrome right?
@Soenhay Yes, you don't need to restart VS2017, it seems to be a bug, hope VS team will look at it soon.
+1 - the bug seems to be if an old debugged browser in Chrome is still running. Closing that fixes the issue.
This used to work for me. That stopped. Then closing VS and restarting would work. That stopped. Then rebooting would work. That stopped. @ABVincitas answer now works. Hoping that doesn't fail also!
j
jGroot

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.


This worked for me as well. Not sure why it stopped working in the first place.
This is the only solution worked for me. I am running VS Studio Community Edition Version 15.4.2 - Thanks
Perfect! An easy to use command, and it helped where the other highly rated comments didn't.
For me this was the right answer but it will never get many up votes because people close chrome and don't come back, irony
S
Sh7ne

3 options

Turn off the JavaScript debug feature in Tools > Options > Debugging > General Kill all chrome tasks Switch to another browser to debug


C
Community

I found a workaround to this which worked for me.

With Chrome selected as your browser, click the Debug menu and select Attach to Process....

https://i.stack.imgur.com/tWC2E.png

This starts the project running without launching the browser. Stop and restart in Chrome and the error is gone.

Of course, another potential solution is to use a different browser but I like debugging in Chrome. :-)


J
Jacob

I think that this happens when javascript debugging is enabled in visual studio and at the same time the chrome developer tools debugger is enabled. The problem arises because two different debuggers trying to debug the same process.


C
Chtioui Malek

I just closed all open chrome instances, stopped my project and then start it again. that fixed the problem for me.


M
Matty

For me the issue was signing into my Google account on the debug Chrome window. This had been working fine for me until I signed in. Once I signed out of that instance of Chrome AND choose to delete all of my settings via the checkbox, the debugger worked fine again.

My non-debugging instance of Chrome was still signed into Google and unaffected. The main issue is that my lovely plugins are gone from the debug version, but at least I can step through client code again.


B
Brantley Fryfogle

I tried the answer by Sibeesh Venu, but that didn't work for me. I believe that if I had killed all chrome processes, it would have worked. I completed some other testing and found that turning off "Continue where you left off" in Chrome settings ensured that this did not occur again for me.


N
Nick Feuer

I just recently had this error. What fixed it for me was to close a chrome window that was running the inspector. I have it pop out its own window whenever I inspect a web page. Did not need to disable or change anything on visual studio.


s
st35ly

Changing this project setting solve the issue for me.

https://i.stack.imgur.com/OEef1.png


d
dangalg

https://i.stack.imgur.com/7ylSM.png


h
hellyale

The other answers in my case did not work. I had to restart windows before I could debug the application again.


N
Nathan Prather

I use chrome's build in developer console tools to debug javascript so the answer marked solution works great for me. This is the weird error message i was getting from VS Community 2017 when trying to debug asp.net app:

"An error occurred that usually indicates a corrupt installation (code 0x80040154). If the problem persists, repair your Visual Studio installation via 'Add or Remove Programs' in Control Panel." and it's fixed now.


R
RetroCoder

Either switch your browser in VS2017. Or open up a command prompt as administrator and do a tskill chrome about 10 times to make sure the app fully dies. Then try again. Sometimes it gets stuck on another process and even it needs to be restarted.


K
Keenan Stewart

This error message appeared for me when I tried to debug two solutions at the same time as I wanted to visually compare the differences. Unchecking the Enable JavaScript Debugging for ASP.NET (Chrome and IE) option worked, but I am still confused why I could not debug more than one solution at a time. Since it is a known issue, maybe this will be address in an update from Visual Studio. Here is to hoping ....


S
Sir David J. Garretson M.S.

I was able to solve this issue in Chrome by turning off the Calendly Chrome extension which I had recently installed. May not be Calendly specific so I would recommend turning off any newly installed Chrome extensions. Below are the steps I took:

Debug Program Let Chrome Open and VS throw error Clear VS error by clicking OK Click Three dots in the top right corner of Chrome Mouse over "More Tools" and click Extensions Find Calendly tile and tick the slider in the bottom right corner to off position Close all Chrome windows including any Chrome windows in the task the bar that continue to run Stop debugging Run program again in debug mode


C
Community

Solution with JavaScript debugging enabled

From the Chrome browser, go to: Settings>Advanced>System and disable "Continue running background apps when Google Chrome is closed". IMPORTANT! The option above must be set for the correct Chrome User Profile! Visual Studio has its own Chrome User Profile, preferences you set when using your "normal" Chrome browser wont have any affect on the Chrome browser launched from VS (with JS debugging enabled).

Run your project from VS with "Enable JavaScript debugging..." enabled. The Chrome browser should open and you'll get the error in VS. Go back to the same instance of Chrome that VS started and disable "Continue running background apps when Google Chrome is closed" as explained above. If you don't have "Enable JavaScript debugging..." enabled/checked, the Chrome instance would use your Default User Profile and the error would persist. Stop and rerun your project, Chrome should load the project as expected without any errors and with JS debugging enabled.

Whenever you stop debugging, you must close the Chrome instance initiated by VS or the error will return the next time you run the project. If there are other Chrome instances, you can leave these open.

To make sure Chrome is using the correct User Profile, go to chrome://version/ by typing it in the url bar, then look at the value for Profile Path. On Windows, the correct value should look something like this:
"C:\Users\[UserName]\AppData\Local\Microsoft\VisualStudio\15.*\WebTools\ChromeUserData_*\Default"

If Chrome is using the browser default or if you're logged in to Chrome with an account, it will look something like this:
"C:\Users\[UserName]\AppData\Local\Google\Chrome\User Data\[ProfileName] OR Default"

Bonus note. If you use Chrome Extensions when debugging, these has to be installed when the VS Profile is active.


D
Dark Matter

Incase you are not able to resolve the issue in any other way, then try this(it worked for me!):

Keep this below code into your web config file then rename value="yourwebformname.aspx"

<system.webServer>
    <defaultDocument>
       <files>
          <add value="insertion.aspx" />
       </files>
    </defaultDocument>
    <directoryBrowse enabled="false" />
</system.webServer>

else Try:

<system.webServer>
    <directoryBrowse enabled="true" />
</system.webServer>

K
Keenan Stewart

Another solution you can try that worked for me when I received this error is to clean the solution, then do a rebuild. As the other solutions did not help me, I thought this might help someone else in the same boat.