cd contrib; make reinstall
This commit is contained in:
parent
bdc974b29b
commit
198d5bc202
13 changed files with 61 additions and 23 deletions
|
|
@ -12,6 +12,11 @@ internal class Program
|
|||
private static void Main(string[] args)
|
||||
{
|
||||
HostApplicationBuilder builder = Host.CreateApplicationBuilder(args);
|
||||
builder.Configuration
|
||||
.AddJsonFile("appsettings-cli.json", optional: false, reloadOnChange: false)
|
||||
.AddJsonFile($"appsettings-cli.{builder.Environment.EnvironmentName}.json", optional: false, reloadOnChange: false)
|
||||
.AddEnvironmentVariables();
|
||||
|
||||
AppHost = builder.Build();
|
||||
AppConfiguration = builder.Configuration;
|
||||
AppHost.Start();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue