Skip to content
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

Add support for multilaunch for Blazorwasm #6432

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions src/shared/dotnetConfigurationProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,19 @@ export class DotnetConfigurationResolver implements vscode.DebugConfigurationPro
}
if (debugConfigArray.length == 1) {
return debugConfigArray[0];
} else if (debugConfigArray.length > 1) {
throw new InternalServiceError('Multiple launch targets is not yet supported.');
} else if (debugConfigArray.length === 2) {
// This creates a onDidStartDebugSession event listener that will dispose of itself when it detects
// the debugConfiguration that is return from this method has started.
const startDebugEvent = vscode.debug.onDidStartDebugSession((debugSession: vscode.DebugSession) => {
if (debugSession.name === debugConfigArray[0].name) {
startDebugEvent.dispose();
vscode.debug.startDebugging(debugSession.workspaceFolder, debugConfigArray[1], debugSession);
}
});

return debugConfigArray[0];
} else if (debugConfigArray.length > 2) {
throw new InternalServiceError('Multiple launch targets (>2) is not yet supported.');
} else {
throw new InternalServiceError(
'Unexpected configuration array from IDotnetDebugConfigurationServiceResult.'
Expand Down
Loading