在Program.cs中阅读和使用appsettings.json?

时间:2019-07-09 14:15:54

标签: c# asp.net-core

我正在尝试为我的应用配置日志记录以使用指定的路径,但是我尝试访问Program.cs文件中的appsettings.json的尝试似乎无效。它将引发错误,并且应用程序无法启动。

我发现了:

Read appsettings.json in Main Program.cs

尝试了其中的建议,但似乎没有用。

我的Program.cs文件:

public class Program
{
    public static void Main(string[] args)
    {

        var config = new ConfigurationBuilder()
            .AddJsonFile("appsettings.json", optional: false)
            .Build();

        LogConfig logConfig = new LogConfig();
        config.GetSection("Config").Bind(logConfig);
        CreateWebHostBuilder(args, logConfig).Build().Run();
    }

    public static IWebHostBuilder CreateWebHostBuilder(string[] args, LogConfig config) =>
        WebHost.CreateDefaultBuilder(args)
        .ConfigureLogging(builder => builder.AddFile(options => {
            options.FileName = "AppLog-"; // The log file prefixes
            options.LogDirectory = config.LoggingPath; // The directory to write the logs
            options.FileSizeLimit = 20 * 1024 * 1024; // The maximum log file size (20MB here)
            options.Extension = "txt"; // The log file extension
            options.Periodicity = PeriodicityOptions.Hourly; // Roll log files hourly instead of daily.
        }))
            .UseStartup<Startup>();
}

和LogConfig.cs:

public class LogConfig
{
    private string loggingPath;

    public string LoggingPath { get => loggingPath; set => loggingPath = value; }
}

当我尝试启动我的应用程序时,出现以下错误消息:

HTTP Error 500.30 - ANCM In-Process Start Failure
Common causes of this issue:
The application failed to start
The application started but then stopped
The application started but threw an exception during startup
Troubleshooting steps:
Check the system event log for error messages
Enable logging the application process' stdout messages
Attach a debugger to the application process and inspect
For more information visit: https://go.microsoft.com/fwlink/?LinkID=2028265

检查了系统事件日志,这似乎是确切的错误消息:

具有物理根目录'C:\ App \ CatalogManager \'的应用程序'/ LM / W3SVC / 2 / ROOT'无法加载clr和托管应用程序。 CLR工作线程过早退出

还有这个:

具有物理根目录'C:\ App \ CatalogManager \'的应用程序'/ LM / W3SVC / 2 / ROOT'遇到意外的托管异常,异常代码='0xe0434352'。请检查stderr日志以获取更多信息。

1 个答案:

答案 0 :(得分:0)

您可以直接使用ConfigureLogging(hostcontext,builder)来获得它,

 public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
         .UseStartup<Startup>()
        .ConfigureLogging((hostingContext, builder) =>
        {
            var loggingPath = hostingContext.Configuration.GetSection("Config");
            builder.AddFile(options=>
               options.LogDirectory = loggingPath ; 
               //...
            );

        });