I'm using Python to build multiple VS solutions from a given directory using msbuild.exe. I only want specific output, but to save work, the best way to interpret the results is with the original ANSI encoding.
Example:
import os
output = os.popen("MSBuild VSTests.sln").read()
print output
This prints the output, but without color. Is there any way to preserve this?