diff --git a/build/tasks/Logger/FlowLogger.cs b/build/tasks/Logger/FlowLogger.cs index 27491e2e4de87e28ab999c68bda17f8ed766de1d..bbab6ac5bc76543c5b2ab62f93f744b2d0417648 100644 --- a/build/tasks/Logger/FlowLogger.cs +++ b/build/tasks/Logger/FlowLogger.cs @@ -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;