mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
999 B
28 lines
999 B
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using Volo.Abp;
|
|
using Volo.Abp.Autofac;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace MyCompanyName.MyProjectName;
|
|
|
|
[DependsOn(
|
|
typeof(AbpAutofacModule)
|
|
)]
|
|
public class MyProjectNameModule : AbpModule
|
|
{
|
|
public override Task OnApplicationInitializationAsync(ApplicationInitializationContext context)
|
|
{
|
|
var logger = context.ServiceProvider.GetRequiredService<ILogger<MyProjectNameModule>>();
|
|
var configuration = context.ServiceProvider.GetRequiredService<IConfiguration>();
|
|
logger.LogInformation($"MySettingName => {configuration["MySettingName"]}");
|
|
|
|
var hostEnvironment = context.ServiceProvider.GetRequiredService<IHostEnvironment>();
|
|
logger.LogInformation($"EnvironmentName => {hostEnvironment.EnvironmentName}");
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
|