asp.net 在.net中本地测试appsettings.release.json的最佳方法

hgtggwj0  于 2023-10-21  发布在  .NET
关注(0)|答案(1)|浏览(132)

我有appsettings.release.json,如何在调试时在本地测试它?

nnsrf1az

nnsrf1az1#

创建一个新的IConfiguration对象,它只注册了appsettings.release.json。

Configuration = new ConfigurationBuilder()
            .SetBasePath(Directory.GetCurrentDirectory())
            .AddJsonFile("appsettings.Release.json", optional: true, reloadOnChange: true).Build();

现在您可以调试代码并使用新的Iconfiguration对象来测试发布设置。

Configuration[ApplicationInsight:ConnectionString]

相关问题