Skip to content

Instantly share code, notes, and snippets.

@csharpfritz
Created June 27, 2016 11:26
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 csharpfritz/a2ee02a1b67b77de41c66e6a5be189bb to your computer and use it in GitHub Desktop.
Save csharpfritz/a2ee02a1b67b77de41c66e6a5be189bb to your computer and use it in GitHub Desktop.
ASP.NET Core Dependency Injection in a Razor template
@using Microsoft.Extensions.Configuration
@inject IConfigurationRoot Config
@{
ViewData["Title"] = "Home Page";
var env = Config["ASPNETCORE_Environment"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment