Move AddCommandLine in SampleStartups (#1449)

This commit is contained in:
Luke Latham 2018-06-06 17:25:31 -05:00 коммит произвёл Chris Ross
Родитель de49ba74db
Коммит ba88bdfd5e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -15,9 +15,9 @@ namespace SampleStartups
public static void Main(string[] args)
{
var config = new ConfigurationBuilder()
.AddCommandLine(args)
.AddEnvironmentVariables(prefix: "ASPNETCORE_")
.AddJsonFile("hosting.json", optional: true)
.AddCommandLine(args)
.Build();
var host = new WebHostBuilder()