Skip to content

Instantly share code, notes, and snippets.

@tonysneed
Last active December 20, 2018 22:03
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 tonysneed/1083738e0f3d02f131a08e334fed971f to your computer and use it in GitHub Desktop.
Save tonysneed/1083738e0f3d02f131a08e334fed971f to your computer and use it in GitHub Desktop.
EnvironmentService
public class EnvironmentService : IEnvironmentService
{
public EnvironmentService()
{
EnvironmentName = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT")
?? "Production";
}
public string EnvironmentName { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment