diff --git a/src/TickerQ.Dashboard/DependencyInjection/ServiceExtensions.cs b/src/TickerQ.Dashboard/DependencyInjection/ServiceExtensions.cs index 03b2f01d..f6f97336 100644 --- a/src/TickerQ.Dashboard/DependencyInjection/ServiceExtensions.cs +++ b/src/TickerQ.Dashboard/DependencyInjection/ServiceExtensions.cs @@ -70,8 +70,9 @@ private static void UseDashboardDelegate(this TickerOp where TTimeTicker : TimeTickerEntity, new() where TCronTicker : CronTickerEntity, new() { - tickerConfiguration.UseDashboardApplication((app) => + tickerConfiguration.UseDashboardApplication((appObj) => { + var app = (IApplicationBuilder)appObj; // Configure static files and middleware with endpoints app.UseDashboardWithEndpoints(dashboardConfig); }); diff --git a/src/TickerQ.Dashboard/TickerQ.Dashboard.csproj b/src/TickerQ.Dashboard/TickerQ.Dashboard.csproj index 2dbb45b8..b497b250 100644 --- a/src/TickerQ.Dashboard/TickerQ.Dashboard.csproj +++ b/src/TickerQ.Dashboard/TickerQ.Dashboard.csproj @@ -1,5 +1,6 @@ - + + Library TickerQ.Dashboard Dashboard UI for visualizing and monitoring TickerQ scheduled jobs, status, and system metrics. $(PackageTags);dashboard;monitoring;scheduler;status;job;ui diff --git a/src/TickerQ.RemoteExecutor/TickerQ.RemoteExecutor.csproj b/src/TickerQ.RemoteExecutor/TickerQ.RemoteExecutor.csproj index 0bbbb1ee..5e1f26b2 100644 --- a/src/TickerQ.RemoteExecutor/TickerQ.RemoteExecutor.csproj +++ b/src/TickerQ.RemoteExecutor/TickerQ.RemoteExecutor.csproj @@ -1,6 +1,7 @@ - + + Library enable enable TickerQ.RemoteExecutor diff --git a/src/TickerQ.SDK/TickerQ.SDK.csproj b/src/TickerQ.SDK/TickerQ.SDK.csproj index c5ffcf1a..48722c3e 100644 --- a/src/TickerQ.SDK/TickerQ.SDK.csproj +++ b/src/TickerQ.SDK/TickerQ.SDK.csproj @@ -13,10 +13,6 @@ - - - -