在.Net内核中将App.config更改为json配置文件的方法如下:
{
"AppSettings": {
"Key1": "Value1",
"Key2": "Value2"
},
"ConnectionStrings": {
"ConnectionString1": "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"
}
}
using Newtonsoft.Json;
using System;
using System.Configuration;
using System.IO;
public class AppConfig
{
public string Key1 { get; set; }
public string Key2 { get; set; }
public string ConnectionString1 { get; set; }
}
public class Program
{
static void Main(string[] args)
{
string jsonConfigPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "config.json");
string jsonConfig = File.ReadAllText(jsonConfigPath);
AppConfig appConfig = JsonConvert.DeserializeObject<AppConfig>(jsonConfig);
// 使用配置项
Console.WriteLine(appConfig.Key1);
Console.WriteLine(appConfig.ConnectionString1);
}
}
以上代码通过读取json配置文件,并使用Newtonsoft.Json库进行反序列化,将配置项映射到一个自定义的AppConfig类中。然后可以通过该类的属性来访问配置项的值。
推荐的腾讯云相关产品和产品介绍链接地址:
请注意,以上链接仅供参考,具体的产品选择应根据实际需求和情况进行评估。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云