mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 01:29:38 -04:00
Fix Assembly Registration
This commit is contained in:
parent
48df4faab5
commit
4274496150
@ -4,7 +4,12 @@ using Pulsar.Features;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
builder.Services.AddLamar();
|
||||
builder.Host.UseLamar((_, registry) => registry.Scan(scan =>
|
||||
{
|
||||
scan.AssemblyContainingType<Program>();
|
||||
scan.WithDefaultConventions();
|
||||
scan.LookForRegistries();
|
||||
}));
|
||||
builder.Services.AddControllersWithViews();
|
||||
builder.Services.AddCors(options =>
|
||||
{
|
||||
|
@ -21,7 +21,6 @@
|
||||
<PackageReference Include="Lamar.Microsoft.DependencyInjection" Version="13.0.3" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.4" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.4" />
|
||||
<PackageReference Include="Scrutor" Version="4.2.2" />
|
||||
<PackageReference Include="Yarp.ReverseProxy" Version="2.1.0" />
|
||||
</ItemGroup>
|
||||
|
||||
|
13
Pulsar/PulsarServiceRegistry.cs
Normal file
13
Pulsar/PulsarServiceRegistry.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Lamar;
|
||||
using Pulsar.Features;
|
||||
|
||||
namespace Pulsar;
|
||||
|
||||
public class PulsarServiceRegistry : ServiceRegistry
|
||||
{
|
||||
public PulsarServiceRegistry()
|
||||
{
|
||||
For<IFileHandlerService>().Use<FileHandlerService>();
|
||||
For<IStatusService>().Use<StatusService>();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user