More work on SeqBackgroundService, next step is tests for it.
This commit is contained in:
parent
a139b1ad08
commit
67207cf90b
27 changed files with 237 additions and 190 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
});
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue