Skip to content

Instantly share code, notes, and snippets.

@csharpfritz csharpfritz/startup.cs Secret
Created Jun 27, 2016

Embed
What would you like to do?
ASP.NET Core Dependency Injection
public IConfigurationRoot Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddMvc();
services.AddSingleton(Configuration);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.