Answers for "Add Custom Json file into configuration provider"

C#
0

Add Custom Json file into configuration provider

public class Program
{
    public static void Main(string[] args)
    {
        CreateHostBuilder(args).Build().Run();
    }

    public static IHostBuilder CreateHostBuilder(string[] args) =>
        Host.CreateDefaultBuilder(args)
            .ConfigureAppConfiguration((hostingContext, config) =>
            {
                config.AddJsonFile("MyArray.json", 
                    optional: true, 
                    reloadOnChange: true);
            })
            .ConfigureWebHostDefaults(webBuilder =>
            {
                webBuilder.UseStartup<Startup>();
            });
}
Posted by: Guest on September-10-2021

Code answers related to "Add Custom Json file into configuration provider"

C# Answers by Framework

Browse Popular Code Answers by Language