I am using Powershell ISE to run a build script - which in turn uses MSBuild - however - it does not allow the textual colors of MSBuild to shine through. MSBuild outputs color coded messages - yellow, grey, green or red depending on its content.
If I run the script through the normal powershell.exe (which is CMD underneath) I get the color coding.
Within Powershell ISE, I tested it using Write-Host -ForegroundColor Green 'hello'
which worked, so is there a reason why the color from MSBuild won't work?