-
Notifications
You must be signed in to change notification settings - Fork 29.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can you make the VSC to support multi project debug? #5300
Comments
@weinand fyi |
@SilentTiger VS Code already supports to open more than one project folder. And every project has its own window and supports its own debug session. |
@weinand Thanks for your reply. For example, a project consists of a client and a server, if I can debug them in just one VSC window but not two VSC windows, such as what I did in VS, that would be great. I opened this issue because I have a big project consists with 5 different NodeJS projects, and I need to run and debug them at the same time, so if I open them in separated windows, there will be 5 VSC windows full of my screen. Thank you so much! |
@SilentTiger how should multiple debug sessions in one window work? |
@weinand |
@SilentTiger what's about the stack trace and data views? |
@weinand You can see that the app1.js is paused by the break point, and the app2.js is still running. The left bottom window of VS is local variables, and the right on it is stack trace. |
@SilentTiger and if both are stopped in a breakpoint? |
@weinand It can not stop more than one project by break poins at sametime. Of course, VS2015 has its own problem, it would be very slow when the project contains too many js files, while VSC did really great in this kind of situation. |
@SilentTiger "It cannot stop more than one project by breakpoins at the same time." That's exactly one of the issues we want to avoid in VS Code. But that would require to be able to show multiple threads, stacktraces, variables, debug console etc. Doing this with multiple windows is much clearer and simpler than squeezing it into one window. |
This feature made its first appearance in the October 2016 release. In the November release we are fine tuning the UI. See #14450. |
Can you make the VSC to support multi project debug?
I mean, just like in VS, make user be able to open more than one project folder at the same time, and can debug them in the same time?
I think that would be a wonderful feature.
Thank you so much!
The text was updated successfully, but these errors were encountered: