-
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
DebugConfigurationProvider should support compound targets #115719
Comments
(Experimental duplicate detection) |
A way to dynamically resolve compound configurations based on the current debug configurations would be much appreciated. I would love to see |
For Doing the same for resolveDebugConfiguration?(..., debugConfiguration: DebugConfiguration | DebugCompoundConfiguration, ...):
ProviderResult<DebugConfiguration | DebugCompoundConfiguration>; but this would be a breaking change. Introducing a new But maybe there is a workaround: if it is really necessary to start more than one debug session from |
This solution sounds like it would work perfectly.
I will try out this workaround soon and report back. Thanks! cc: @nturinski |
So far in my prototyping the suggested workaround has worked well. I think we will go forward using this solution. cc: @isidorn |
@alexweininger this is great to now. And I agree going forward with that approach sounds good. Maybe it would be useful that we schedule a 30min sync meeting where we would just talk about debugging. |
Because compound targets are not debug
"configurations"
, but rather included separately under the"compounds"
key inlaunch.json
, it is not possible for a debugging extension to provide a compound configuration. It should be possible, in some way, to dynamically provide a compound target.There is an overlapping request from 3.5 years ago which was marked "out of scope" with no explanation:
#37193
I am hoping that this can be re-evaluated now.
The text was updated successfully, but these errors were encountered: