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 bf4983b commit 72270b1Copy full SHA for 72270b1
build.ps1
@@ -14,6 +14,9 @@ $WorkingDir = split-path -parent $MyInvocation.MyCommand.Definition
14
15
$CefSln = Join-Path $WorkingDir 'CefSharp3.sln'
16
17
+$MSBuildExe = join-path -path (Get-ItemProperty "HKLM:\software\Microsoft\MSBuild\ToolsVersions\4.0").MSBuildToolsPath -childpath "msbuild.exe"
18
+$MSBuildExe = $MSBuildExe -replace "Framework64", "Framework"
19
+
20
function Write-Diagnostic
21
{
22
param(
@@ -162,7 +165,7 @@ function Msvs
162
165
)
163
166
164
167
$StartInfo = New-Object System.Diagnostics.ProcessStartInfo
- $StartInfo.FileName = "msbuild.exe"
168
+ $StartInfo.FileName = $MSBuildExe
169
$StartInfo.Arguments = $Arguments
170
171
$StartInfo.EnvironmentVariables.Clear()
0 commit comments