Created
November 21, 2017 13:39
-
-
Save joelharkes/cee25b1340e8e9f9dae5d24a8c255959 to your computer and use it in GitHub Desktop.
Debug IronPython in visual studio code (vscode)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "IronPython", | |
"type": "python", | |
"request": "launch", | |
"stopOnEntry": true, | |
"pythonPath": "C:\\Program Files (x86)\\IronPython 2.7\\ipy.exe", | |
"program": "${file}", | |
"cwd": "${workspaceRoot}", | |
"env": {}, | |
"envFile": "${workspaceRoot}/.env", | |
"debugOptions": [ | |
"WaitOnAbnormalExit", | |
"WaitOnNormalExit", | |
"RedirectOutput" | |
] | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
any way to slove it ? I just can run it ,but when I debugger it ,it will run pass away one moment.