Skip to content

Commit

Permalink
Make sure we use msbuild.exe (from Visual Studio) and not msbuild.bat…
Browse files Browse the repository at this point in the history
… (from Mono)
  • Loading branch information
bradwilson committed Jul 22, 2022
1 parent 878d209 commit 211aa27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ if ($null -eq $targetFunction) {
}

_build_step "Performing pre-build verifications"
_require dotnet "Could not find 'dotnet'. Please ensure .NET CLI Tooling is installed."
_require msbuild "Could not find 'msbuild'. Please ensure MSBUILD.EXE v17.0 is on the path."
_require dotnet "Could not find 'dotnet'. Please ensure .NET SDK is installed."
_require msbuild.exe "Could not find 'msbuild'. Please ensure MSBUILD.EXE v17.0 is on the path."
_verify_msbuild_version "17.0.0"

_mkdir $packageOutputFolder
Expand Down

0 comments on commit 211aa27

Please sign in to comment.