Skip to content

Instantly share code, notes, and snippets.

@cguldogan
Created November 7, 2017 17:29
Show Gist options
  • Save cguldogan/41051fae7093208ad6ad733a0c52f70a to your computer and use it in GitHub Desktop.
Save cguldogan/41051fae7093208ad6ad733a0c52f70a to your computer and use it in GitHub Desktop.
Hide Swagger in production etc.
public class SwaggerConfig
{
public static void Register()
{
if (System.Configuration.ConfigurationManager.AppSettings["DisableSwagger"].Equals("True"))
{
return;
}
......
......
......
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment