Skip to content

Instantly share code, notes, and snippets.

@debugthings
Created March 6, 2017 15:41
Show Gist options
  • Select an option

  • Save debugthings/fdece89e0d0a51d86f5f03734fdd5c87 to your computer and use it in GitHub Desktop.

Select an option

Save debugthings/fdece89e0d0a51d86f5f03734fdd5c87 to your computer and use it in GitHub Desktop.
Disable Telemetry when build in DEBUG mode
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
#if DEBUG
Microsoft.ApplicationInsights.Extensibility.TelemetryConfiguration.Active.DisableTelemetry = true;
#endif
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment