You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Architecture check in AdapterExectuableCommand (#2094)
* Add Architecture check in AdapterExectuableCommand
x86 messages only show during the first installation. But it still
registeres the vsdbg-ui.exe command. This adds a check so it will
error instead of returning the command.
* Moving arch check into completeDebuggerInstall
logger.appendLine(`[WARNING]: x86 Windows is not currently supported by the .NET Core debugger. Debugging will not be available.`);
41
-
}else{
42
-
logger.appendLine(`[WARNING]: Processor architecture '${platformInformation.architecture}' is not currently supported by the .NET Core debugger. Debugging will not be available.`);
logger.appendLine(`[WARNING]: x86 Windows is not currently supported by the .NET Core debugger. Debugging will not be available.`);
44
55
}else{
45
-
logger.appendLine("[ERROR]: C# Extension failed to install the debugger package");
46
-
showInstallErrorMessage(channel);
56
+
logger.appendLine(`[WARNING]: Processor architecture '${platformInformation.architecture}' is not currently supported by the .NET Core debugger. Debugging will not be available.`);
// our install.complete file does not exist yet, meaning we have not completed the installation. Try to figure out what if anything the package manager is doing
129
140
// the order in which files are dealt with is this:
130
141
// 1. install.Begin is created
131
142
// 2. install.Lock is created
132
143
// 3. install.Begin is deleted
133
144
// 4. install.complete is created
134
-
145
+
135
146
// install.Lock does not exist, need to wait for packages to finish downloading.
0 commit comments