PowerBuild icon indicating copy to clipboard operation
PowerBuild copied to clipboard

Integrate MSBuild into PowerShell pipeline.

Results 3 PowerBuild issues
Sort by recently updated
recently updated
newest added

This is what happens now: ``` Invoke-MsBuild : Could not load type 'System.AppDomainSetup' from assembly 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. ```

A colleague encountered an issue using our build automation scripts. A repro in a nutshell is as follows: ```powershell $solution = 'c:\path\to\moirai\tests\moirai_test.sln' $debugCfg = 'Debug' $buildConfiguration = $debugCfg $buildPlatform =...

Using "C:\Program Files\PowerShell\6.0.0.17\powershell.exe" ``` Install-Module -Name PowerBuild -Scope CurrentUser ``` ``` PS C:\Users\blah> $buildResults = Invoke-MSBuild -Project "C:\src\github_jm\moirai\tests\moirai_test.sln" -Target Build -Verbosity Minimal -DefaultLogger Host -Property @{Configuration="Debug"} Invoke-MSBuild : The 'Invoke-MSBuild'...

powershell 6.0