Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ private static void UseDashboardDelegate<TTimeTicker, TCronTicker>(this TickerOp
where TTimeTicker : TimeTickerEntity<TTimeTicker>, new()
where TCronTicker : CronTickerEntity, new()
{
tickerConfiguration.UseDashboardApplication((app) =>
tickerConfiguration.UseDashboardApplication((appObj) =>
{
var app = (IApplicationBuilder)appObj;
// Configure static files and middleware with endpoints
app.UseDashboardWithEndpoints<TTimeTicker, TCronTicker>(dashboardConfig);
});
Expand Down
3 changes: 2 additions & 1 deletion src/TickerQ.Dashboard/TickerQ.Dashboard.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Library</OutputType>
<PackageId>TickerQ.Dashboard</PackageId>
<Description>Dashboard UI for visualizing and monitoring TickerQ scheduled jobs, status, and system metrics.</Description>
<PackageTags>$(PackageTags);dashboard;monitoring;scheduler;status;job;ui</PackageTags>
Expand Down
3 changes: 2 additions & 1 deletion src/TickerQ.RemoteExecutor/TickerQ.RemoteExecutor.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<OutputType>Library</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>TickerQ.RemoteExecutor</PackageId>
Expand Down
4 changes: 0 additions & 4 deletions src/TickerQ.SDK/TickerQ.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
<ItemGroup>
<PackageReference Include="TickerQ.Utilities" Version="$(Version)" />
<PackageReference Include="Microsoft.Extensions.Http" Version="$(DotNetVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="$(DotNetVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Http.Results" Version="$(DotNetVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="$(DotNetVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="$(DotNetVersion)" />
</ItemGroup>

</Project>
Loading