Skip to content

Instantly share code, notes, and snippets.

@darrenkopp
Created March 2, 2016 03:12
Show Gist options
  • Save darrenkopp/9ec0346939c2907ba404 to your computer and use it in GitHub Desktop.
Save darrenkopp/9ec0346939c2907ba404 to your computer and use it in GitHub Desktop.
Work around for mvc
@if (EnvironmentMode.IsProduction)
{
@RenderSection("ProductionOnlyScripts", false)
}
else
{
RenderSection("ProductionOnlyScripts", false).WriteTo(HtmlTextWriter.Null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment