We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7100bf4 commit 9a8466cCopy full SHA for 9a8466c
test/utils.ts
@@ -147,6 +147,12 @@ export async function InstallCSharpExtension() {
147
throw new Error("Failed to activate C# extension");
148
}
149
console.log("==INSTALLED: C# Extension==");
150
+
151
+ // BUG: MacOS C# extension appears not not be able to be hot installed, it times out during a search for csproj files activation event.
152
+ if (process.platform === "darwin") {
153
+ console.log("==RELOADING: VSCode on Mac due to not being able to hot install C# extension==");
154
+ await vscode.commands.executeCommand("workbench.action.reloadWindow");
155
+ }
156
157
158
0 commit comments