File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 3107
3107
},
3108
3108
{
3109
3109
"description" : " Visual Studio Windows Debugger" ,
3110
- "url" : " https://go.microsoft.com/fwlink/?linkid=2162486 " ,
3110
+ "url" : " https://go.microsoft.com/fwlink/?linkid=2167487 " ,
3111
3111
"platforms" : [
3112
3112
" win32"
3113
3113
],
3118
3118
"binaries" : [
3119
3119
" ./debugAdapters/vsdbg/bin/vsdbg.exe"
3120
3120
],
3121
- "integrity" : " E5046509D510086B99F171595114220AD8E9F820E7238B6A5199CD78B9AD2078"
3121
+ "integrity" : " 1EB0394D716604F9402AF43BE905A85F3C735CA94FE20DFE9770DDE6516019F7"
3122
+ },
3123
+ {
3124
+ "description" : " Visual Studio Windows ARM64 Debugger" ,
3125
+ "url" : " https://go.microsoft.com/fwlink/?linkid=2167488" ,
3126
+ "platforms" : [
3127
+ " win32"
3128
+ ],
3129
+ "architectures" : [
3130
+ " arm64"
3131
+ ],
3132
+ "binaries" : [
3133
+ " ./debugAdapters/vsdbg/bin/vsdbg.exe"
3134
+ ],
3135
+ "integrity" : " 49D68434BD097752720137180E2ECA52637A9B65807651DA94D17620DD1EA8FA"
3122
3136
}
3123
3137
]
3124
- }
3138
+ }
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export function initialize(context: vscode.ExtensionContext): void {
37
37
// On non-windows platforms, the cppvsdbg debugger will not be registered for initial configurations.
38
38
// This will cause it to not show up on the dropdown list.
39
39
let vsdbgProvider : CppVsDbgConfigurationProvider | null = null ;
40
- if ( os . platform ( ) === 'win32' && os . arch ( ) !== 'arm64' ) {
40
+ if ( os . platform ( ) === 'win32' ) {
41
41
vsdbgProvider = new CppVsDbgConfigurationProvider ( configurationProvider ) ;
42
42
disposables . push ( vscode . debug . registerDebugConfigurationProvider ( 'cppvsdbg' , new QuickPickConfigurationProvider ( vsdbgProvider ) ) ) ;
43
43
}
You can’t perform that action at this time.
0 commit comments