.net core获取appsettings CustomSettings

Posted Super-Code

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.net core获取appsettings CustomSettings相关的知识,希望对你有一定的参考价值。

private static string GetCustomSettings(string key)
        {
            var config = new ConfigurationBuilder()
                         .AddInMemoryCollection()
                         .SetBasePath(Directory.GetCurrentDirectory())
                         .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
                         .Build();

            return config.GetSection("CustomSettings").GetValue(key, string.Empty);
        }
        // 获取自定义value
        public static string WXWarningClosedTemplateID => GetCustomSettings("xxx");

 

以上是关于.net core获取appsettings CustomSettings的主要内容,如果未能解决你的问题,请参考以下文章

.NET Core appsettings.json 获取数据库连接字符串

从 Asp.Net Core AppSettings 获取值

从 appsettings.json 获取 ConnectionString,而不是在 .NET Core 2.0 App 中硬编码

如何在使用 .NET Core 的控制台应用程序中从 appsettings.json 获取值?

.net core读取配置文件appsetting.json

.Net Core 配置文件appsettings