日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > asp.net >内容正文

asp.net

.NET Core 控制台程序读 appsettings.json 、注依赖、配日志、设 IOptions

發布時間:2023/12/4 asp.net 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 .NET Core 控制台程序读 appsettings.json 、注依赖、配日志、设 IOptions 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

.NET Core 控制臺程序沒有 ASP.NET Core 的 IWebHostBuilder 與?Startup.cs ,那要讀 appsettings.json、注依賴、配日志、設 IOptions 該怎么辦呢?因為這些操作與 ASP.NET Core 無依賴,所以可以自己動手,輕松搞定。

1、讀?appsettings.json ,ConfigurationBuilder 上

var conf = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()).AddJsonFile("appsettings.json", true, true).AddJsonFile("appsettings.Development.json", true, true).Build();

需要安裝 nuget 包 Microsoft.Extensions.Configuration?、Microsoft.Extensions.Configuration.FileExtensions 、Microsoft.Extensions.Configuration.Json

2、注依賴,IServiceCollection + IServiceProvider 一起來

IServiceCollection services = new ServiceCollection();//...services.AddSingleton<CosClient>(); IServiceProvider serviceProvider = services.BuildServiceProvider();var cosClient = serviceProvider.GetService<CosClient>();

需要安裝 nuget 包 Microsoft.Extensions.DependencyInjection?

3、配日志,?AddLogging 與 ILoggingBuilder 肩并肩

services.AddLogging(builder => builder ? ?.AddConfiguration(conf.GetSection("Logging")).AddConsole());

需要安裝 nuget 包 Microsoft.Extensions.Logging 、Microsoft.Extensions.Logging.Configuration 、Microsoft.Extensions.Logging.Console

4、設IOptions,AddOptions() 與?Configure<T> 齊步走

services.AddOptions(); services.Configure<CosClientOptions>(conf.GetSection("cosClient"));

需要安裝 nuget 包?Microsoft.Extensions.Options 與?Microsoft.Extensions.Options.ConfigurationExtensions

完整代碼:

class Program { ? ?
? ? ?
static async Task Main(string[] args){ ? ? ? ?var conf = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()).AddJsonFile("appsettings.json", true, true).AddJsonFile("appsettings.Development.json", true, true).Build();IServiceCollection services = new ServiceCollection();services.AddLogging(builder => builder.AddConfiguration(conf.GetSection("Logging")).AddConsole());services.AddOptions();services.Configure<CosClientOptions>(conf.GetSection("cosClient"));services.AddSingleton<CosClient>();IServiceProvider serviceProvider = services.BuildServiceProvider(); ? ?
? ? ?
var cosClient = serviceProvider.GetService<CosClient>();} }

原文:http://www.cnblogs.com/dudu/p/7803086.html


.NET社區新聞,深度好文,歡迎訪問公眾號文章匯總 http://www.csharpkit.com

總結

以上是生活随笔為你收集整理的.NET Core 控制台程序读 appsettings.json 、注依赖、配日志、设 IOptions的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。