Added configuration support for xml
This commit is contained in:
parent
0a85bcc7cf
commit
33e5f32970
|
@ -15,7 +15,8 @@
|
||||||
.AddJsonFile("/configuration/config.json", true, false)
|
.AddJsonFile("/configuration/config.json", true, false)
|
||||||
.AddYamlFile("/configuration/config.yml", true, false)
|
.AddYamlFile("/configuration/config.yml", true, false)
|
||||||
.AddTomlFile("/configuration/config.toml", true, false)
|
.AddTomlFile("/configuration/config.toml", true, false)
|
||||||
.AddIniFile( "/configuration/config.ini", true, false);
|
.AddIniFile( "/configuration/config.ini", true, false)
|
||||||
|
.AddXmlFile( "/configuration/config.xml", true, false);
|
||||||
|
|
||||||
builder.Services.AddRazorComponents().AddInteractiveServerComponents();
|
builder.Services.AddRazorComponents().AddInteractiveServerComponents();
|
||||||
builder.Services.AddControllers();
|
builder.Services.AddControllers();
|
||||||
|
|
Loading…
Reference in a new issue