Accessing environment variables from ASP.NET Core 1 RC1 IConfiguration
问题 I am working on learning how to properly handle environment variables and configuring my app in multiple environments. I've chosen to read from a config.json in Development, and use environment variables in Production. I have the following Startup.cs to demonstrate this: using Microsoft.AspNet.Builder; using Microsoft.AspNet.Hosting; using Microsoft.AspNet.Http; using Microsoft.Extensions.Configuration; namespace Variables { public class Startup { private IConfiguration mConfiguration; public