more work

This commit is contained in:
Alex
2025-01-10 13:49:28 +00:00
parent fa22bc8019
commit 966562bc08
38 changed files with 880 additions and 149 deletions
+4 -1
View File
@@ -19,6 +19,9 @@ public static class Program
{
var serviceProvider = builder.Services.BuildServiceProvider();
var watermark = serviceProvider.GetService<Watermark>();
watermark.Initialize();
// TODO: var preSptModLoader = serviceProvider.GetService<PreSptModLoader>();
var app = serviceProvider.GetService<App>();
var appContext = serviceProvider.GetService<ApplicationContext>();
appContext.AddValue(ContextVariableType.APP_BUILDER, builder);
@@ -78,4 +81,4 @@ public static class Program
RegisterComponents(builderServices, typeof(App).Assembly.GetTypes()
.Where(type => Attribute.IsDefined(type, typeof(Injectable))));
}
}
}