You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have Solution Explorer hidden, restart VS, open a standalone Python file (don't open any projects/solutions), and try and run with/without debugging you will get an E_FAIL error.
This is because we try and access the current solution before it exists. StartScriptCommand.cs should handle this case and continue as for when the solution is empty.
The workaround is to open Solution Explorer, which will initialize an empty solution.
The text was updated successfully, but these errors were encountered:
If you have Solution Explorer hidden, restart VS, open a standalone Python file (don't open any projects/solutions), and try and run with/without debugging you will get an E_FAIL error.
This is because we try and access the current solution before it exists.
StartScriptCommand.cs
should handle this case and continue as for when the solution is empty.The workaround is to open Solution Explorer, which will initialize an empty solution.
The text was updated successfully, but these errors were encountered: