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

jac*_*234 3 c# asp.net-core

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

我找到了这个:

在 Main Program.cs 中读取 appsettings.json

并尝试了其中的建议,但似乎不起作用。

我的 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>();
}
Run Code Online (Sandbox Code Playgroud)

和 LogConfig.cs:

public class LogConfig
{
    private string loggingPath;

    public string LoggingPath { get => loggingPath; set => loggingPath = value; }
}
Run Code Online (Sandbox Code Playgroud)

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

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
Run Code Online (Sandbox Code Playgroud)

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

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

还有这个:

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

Rya*_*yan 5

你可以直接把它用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 ; 
               //...
            );

        });
Run Code Online (Sandbox Code Playgroud)