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
Copy file name to clipboardExpand all lines: build.psm1
+13-5Lines changed: 13 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -222,9 +222,17 @@ Fix steps:
222
222
throw'Win 10 SDK not found. Run Start-PSBootstrap or install Microsoft Windows 10 SDK from https://developer.microsoft.com/en-US/windows/downloads/windows-10-sdk'
# atlbase.h is included in the pwrshplugin project
229
+
if ((Test-Path-Path $atlMfcIncludePath\atlbase.h) -eq$false) {
230
+
throw"Could not find Visual Studio include file atlbase.h at $atlMfcIncludePath. Please ensure the optional feature 'Microsoft Foundation Classes for C++' is installed."
231
+
}
232
+
233
+
# vcvarsall.bat is used to setup environment variables
234
+
if ((Test-Path-Path $vcPath\vcvarsall.bat) -eq$false) {
235
+
throw"Could not find Visual Studio vcvarsall.bat at $vcPath. Please ensure the optional feature 'Common Tools for Visual C++' is installed."
0 commit comments