Merge pull request #13661 from abpframework/auto-merge/rel-6-0/1271

Merge branch dev with rel-6.0
pull/13667/head
maliming 3 years ago committed by GitHub
commit 66b83b9cae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,10 +36,9 @@ public class Program
services.AddApplicationAsync<MyProjectNameModule>(options => services.AddApplicationAsync<MyProjectNameModule>(options =>
{ {
options.Services.ReplaceConfiguration(services.GetConfiguration()); options.Services.ReplaceConfiguration(services.GetConfiguration());
options.UseAutofac();
options.Services.AddLogging(loggingBuilder => loggingBuilder.AddSerilog()); options.Services.AddLogging(loggingBuilder => loggingBuilder.AddSerilog());
}); });
}).UseConsoleLifetime(); }).UseAutofac().UseConsoleLifetime();
var host = builder.Build(); var host = builder.Build();
await host.Services.GetRequiredService<IAbpApplicationWithExternalServiceProvider>().InitializeAsync(host.Services); await host.Services.GetRequiredService<IAbpApplicationWithExternalServiceProvider>().InitializeAsync(host.Services);

Loading…
Cancel
Save