Skip to content

Commit

Permalink
Remove pwa- prefix from BlazorDebug (#5908)
Browse files Browse the repository at this point in the history
This PR removes pwa- from msedge and chrome as this was an older debug
type that is now depricated.

See microsoft/vscode-js-debug#1305
  • Loading branch information
WardenGnaw authored Jul 11, 2023
1 parent c07299d commit 0b2bf6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/razor/src/blazorDebug/blazorDebugConfigurationProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import showErrorMessage from '../../../observers/utils/showErrorMessage';

export class BlazorDebugConfigurationProvider implements vscode.DebugConfigurationProvider {
private readonly autoDetectUserNotice = `Run and Debug: auto-detection found {0} for a launch browser`;
private readonly edgeBrowserType = 'pwa-msedge';
private readonly chromeBrowserType = 'pwa-chrome';
private readonly edgeBrowserType = 'msedge';
private readonly chromeBrowserType = 'chrome';

constructor(private readonly logger: RazorLogger, private readonly vscodeType: typeof vscode) {}

Expand Down

0 comments on commit 0b2bf6d

Please sign in to comment.