I use Powershell ISE to run the build script, which in turn uses MSBuild, however - it does not allow blue text colors for MSBuild. MSBuild displays colored messages - yellow, gray, green or red depending on its contents.
If I run the script through a regular powershell.exe file (which is the CMD below), I get color coding.
In PowerShell ISE, I tested it with help Write-Host -ForegroundColor Green 'hello'that worked, so is there a reason why color from MSBuild will not work?
source
share