From 42744961501731c0569d8c9d695669ea633c4055 Mon Sep 17 00:00:00 2001 From: Ben Parsons <9parsonsb@gmail.com> Date: Sat, 20 Apr 2024 23:54:41 +1000 Subject: [PATCH] Fix Assembly Registration --- Pulsar/Program.cs | 7 ++++++- Pulsar/Pulsar.csproj | 1 - Pulsar/PulsarServiceRegistry.cs | 13 +++++++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 Pulsar/PulsarServiceRegistry.cs diff --git a/Pulsar/Program.cs b/Pulsar/Program.cs index cc768c2..f004158 100644 --- a/Pulsar/Program.cs +++ b/Pulsar/Program.cs @@ -4,7 +4,12 @@ using Pulsar.Features; var builder = WebApplication.CreateBuilder(args); -builder.Services.AddLamar(); +builder.Host.UseLamar((_, registry) => registry.Scan(scan => +{ + scan.AssemblyContainingType(); + scan.WithDefaultConventions(); + scan.LookForRegistries(); +})); builder.Services.AddControllersWithViews(); builder.Services.AddCors(options => { diff --git a/Pulsar/Pulsar.csproj b/Pulsar/Pulsar.csproj index 8df4c3e..09d53a2 100644 --- a/Pulsar/Pulsar.csproj +++ b/Pulsar/Pulsar.csproj @@ -21,7 +21,6 @@ - diff --git a/Pulsar/PulsarServiceRegistry.cs b/Pulsar/PulsarServiceRegistry.cs new file mode 100644 index 0000000..e4cdacc --- /dev/null +++ b/Pulsar/PulsarServiceRegistry.cs @@ -0,0 +1,13 @@ +using Lamar; +using Pulsar.Features; + +namespace Pulsar; + +public class PulsarServiceRegistry : ServiceRegistry +{ + public PulsarServiceRegistry() + { + For().Use(); + For().Use(); + } +} \ No newline at end of file