mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
33 lines
943 B
C#
33 lines
943 B
C#
using Microsoft.Extensions.Configuration;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.WebCore.BuilderExtend
|
|
{
|
|
public static class JsonFileExtension
|
|
{
|
|
public static void AddJsonFileService(this IConfigurationBuilder builder, params string[] JsonFile)
|
|
{
|
|
if (JsonFile==null)
|
|
{
|
|
string[] myJsonFile = new string[] { "appsettings.json", "Config/configuration.json" };
|
|
foreach (var item in myJsonFile)
|
|
{
|
|
builder.AddJsonFile(item, optional: true, reloadOnChange: false);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
foreach (var item in JsonFile)
|
|
{
|
|
builder.AddJsonFile(item, optional: true, reloadOnChange: false);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|