-
We've been experimenting with Aspire and found that the Somehow, adding |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
How are you launching multiple projects in the first place? |
Beta Was this translation helpful? Give feedback.
So you’re building your own orchestrator/launcher and you want to hook into the debugger the same way aspire does?
You probably need this project capability to begin with. I think this is what makes VS launch with the debug session token and port. Then you have to implement the protocol.
The project capability is here:
aspire/src/Aspire.Hosting.Sdk/SDK/Sdk.targets
Line 12 in ceae04d
The protocol is here
https://github.com/dotnet/aspire/blob/main/docs/specs/IDE-execution.md
Hope that helps