Skip to content

Instantly share code, notes, and snippets.

@plioi
Created October 21, 2013 19:14
Show Gist options
  • Save plioi/7089285 to your computer and use it in GitHub Desktop.
Save plioi/7089285 to your computer and use it in GitHub Desktop.
static Listener CreateListener()
{
var runningUnderTeamCity = Environment.GetEnvironmentVariable("TEAMCITY_PROJECT_NAME") != null;
if (runningUnderTeamCity)
return new TeamCityListener();
return new ConsoleListener();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment