Skip to content

Instantly share code, notes, and snippets.

@namitts82
Last active April 20, 2016 04:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save namitts82/c1177d1c780af0a8ca5811f0ab2659b5 to your computer and use it in GitHub Desktop.
Save namitts82/c1177d1c780af0a8ca5811f0ab2659b5 to your computer and use it in GitHub Desktop.
WebHooks Main
namespace VSOBugReporter
{
class Program
{
static void Main()
{
var config = new JobHostConfiguration();
// Enabling detailed tracing
config.Tracing.ConsoleLevel = TraceLevel.Verbose;
// Load extension
config.UseWebHooks();
JobHost host = new JobHost(config);
host.RunAndBlock();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment