More work on SeqBackgroundService, next step is tests for it.

This commit is contained in:
Janus C. H. Knudsen 2025-02-18 16:23:08 +01:00
parent a139b1ad08
commit 67207cf90b
27 changed files with 237 additions and 190 deletions

View file

@ -1,3 +1,4 @@
using Application;
using Autofac.Extensions.DependencyInjection;
var host = Host.CreateDefaultBuilder(args)
@ -6,7 +7,7 @@ var host = Host.CreateDefaultBuilder(args)
{
webHostBuilder
.UseContentRoot(Directory.GetCurrentDirectory())
.UseStartup<PlanTempus.Startup>();
.UseStartup<Startup>();
})
.Build();

View file

@ -2,7 +2,7 @@
using Core.Configurations.JsonConfigProvider;
using Core.Configurations;
namespace PlanTempus
namespace Application
{
public class Startup
{
@ -28,7 +28,7 @@ namespace PlanTempus
services.Configure<Microsoft.AspNetCore.Mvc.Razor.RazorViewEngineOptions>(options =>
{
options.ViewLocationExpanders.Add(new Application.Common.ComponentsViewLocationExpander());
options.ViewLocationExpanders.Add(new Common.ComponentsViewLocationExpander());
});
}