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
console.assert(vscode.extensions.getExtension(msWasmWasiCoreName)!==undefined,"Failed to load WASM wasi core.");
35
35
vscode.window.showInformationMessage("Microsoft WASM wasi core extension installed with success !");
36
+
returntrue;
36
37
},failure=>{
37
38
vscode.window.showErrorMessage(`Failed to install Microsoft WASM wasi core: ${failure} You will have to install ms-vscode.wasm-wasi-core yourself through the extensions tab.`);
39
+
returnfalse;
38
40
});
41
+
if(!installed){
42
+
return;
43
+
}
39
44
}else{
40
45
vscode.window.showErrorMessage("Extension shader-validator failed to install dependencies. It will not launch the shader language server.");
0 commit comments