Disable TeamCity flow logger for now. It's a little too messy and needs refinement

This commit is contained in:
Nate McMaster 2017-07-13 18:11:04 -07:00
parent 6c1388567d
commit abd2ce9cf2
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,9 @@ namespace RepoTasks
{
public class FlowLogger : ConsoleLogger
{
private static readonly bool IsTeamCity = !string.IsNullOrEmpty(Environment.GetEnvironmentVariable("TEAMCITY_PROJECT_NAME"));
// disabled until we can fix some of the whitespace and flow issues caused by invoking other shell commands from MSBuild
// private static readonly bool IsTeamCity = !string.IsNullOrEmpty(Environment.GetEnvironmentVariable("TEAMCITY_PROJECT_NAME"));
private static readonly bool IsTeamCity = false;
private volatile bool _initialized;