76 lines
2.5 KiB
C#
76 lines
2.5 KiB
C#
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
|
|
namespace ApiAuthSample
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
if (args == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(args));
|
|
}
|
|
|
|
CreateWebHostBuilder(args).Build().Run();
|
|
}
|
|
|
|
public static IWebHostBuilder CreateWebHostBuilder(string[] args)
|
|
{
|
|
var builder = new WebHostBuilder()
|
|
.UseKestrel((builderContext, options) =>
|
|
{
|
|
options.Configure(builderContext.Configuration.GetSection("Kestrel"));
|
|
})
|
|
.UseContentRoot(Directory.GetCurrentDirectory())
|
|
.ConfigureAppConfiguration((hostingContext, config) =>
|
|
{
|
|
var env = hostingContext.HostingEnvironment;
|
|
|
|
config.AddJsonFile("appsettings.json", optional: true, reloadOnChange: false)
|
|
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true, reloadOnChange: false);
|
|
|
|
if (env.IsDevelopment())
|
|
{
|
|
var appAssembly = Assembly.Load(new AssemblyName(env.ApplicationName));
|
|
if (appAssembly != null)
|
|
{
|
|
config.AddUserSecrets(appAssembly, optional: true);
|
|
}
|
|
}
|
|
|
|
config.AddEnvironmentVariables();
|
|
|
|
if (args != null)
|
|
{
|
|
config.AddCommandLine(args);
|
|
}
|
|
})
|
|
.ConfigureLogging((hostingContext, logging) =>
|
|
{
|
|
logging.AddConfiguration(hostingContext.Configuration.GetSection("Logging"));
|
|
logging.AddConsole();
|
|
logging.AddDebug();
|
|
})
|
|
.UseIISIntegration()
|
|
.UseDefaultServiceProvider((context, options) =>
|
|
{
|
|
options.ValidateScopes = context.HostingEnvironment.IsDevelopment();
|
|
});
|
|
|
|
if (args != null)
|
|
{
|
|
builder.UseConfiguration(new ConfigurationBuilder().AddCommandLine(args).Build());
|
|
}
|
|
|
|
builder.UseStartup<Startup>();
|
|
|
|
return builder;
|
|
}
|
|
}
|
|
}
|