diff --git a/src/Aspirant.Hosting.Yarp/YarpResource.cs b/src/Aspirant.Hosting.Yarp/YarpResource.cs index e506634..c26471a 100644 --- a/src/Aspirant.Hosting.Yarp/YarpResource.cs +++ b/src/Aspirant.Hosting.Yarp/YarpResource.cs @@ -19,7 +19,12 @@ public class YarpResource(string name) : WebApplicationResource(name) internal string? ConfigurationSectionName { get; set; } } -internal class YarpResourceLifecycleHook(IHostEnvironment hostEnvironment, DistributedApplicationExecutionContext executionContext, ResourceNotificationService resourceNotificationService, ResourceLoggerService resourceLoggerService) : WebApplicationResourceLifecycleHook(hostEnvironment, executionContext, resourceNotificationService, resourceLoggerService) +internal class YarpResourceLifecycleHook( + IHostEnvironment hostEnvironment, + DistributedApplicationExecutionContext executionContext, + ResourceNotificationService resourceNotificationService, + ResourceLoggerService resourceLoggerService) + : WebApplicationResourceLifecycleHook(hostEnvironment, executionContext, resourceNotificationService, resourceLoggerService) { protected override string ResourceTypeName { get; } = "Yarp";