Skip to content

Commit f9dd313

Browse files
committed
fix
1 parent 0e52491 commit f9dd313

File tree

4 files changed

+21
-13
lines changed

4 files changed

+21
-13
lines changed

src/Directory.Build.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<Project>
2-
32
<PropertyGroup>
43
<TargetFramework>net9.0</TargetFramework>
54
<RepositoryUrl>https://github.com/arcenox-co/TickerQ</RepositoryUrl>

src/TickerQ.Dashboard/TickerQ.Dashboard.csproj

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3+
<OutputType>Library</OutputType>
4+
<IsPackable>true</IsPackable>
35
<PackageId>TickerQ.Dashboard</PackageId>
46
<Description>Dashboard UI for visualizing and monitoring TickerQ scheduled jobs, status, and system metrics.</Description>
57
<PackageTags>$(PackageTags);dashboard;monitoring;scheduler;status;job;ui</PackageTags>
68
<PackageReadmeFile>README.md</PackageReadmeFile>
9+
<Nullable>enable</Nullable>
710
</PropertyGroup>
811

12+
<ItemGroup>
13+
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
14+
<_Parameter1>TickerQ.Tests</_Parameter1>
15+
</AssemblyAttribute>
16+
</ItemGroup>
17+
918
<ItemGroup>
1019
<None Include="README.md" Pack="true" PackagePath="" />
1120
</ItemGroup>
@@ -26,5 +35,4 @@
2635
<None Remove="wwwroot\*" />
2736
<None Remove="wwwroot\public\*" />
2837
</ItemGroup>
29-
3038
</Project>
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
2-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
32

43
<PropertyGroup>
54
<PackageId>TickerQ.Utilities</PackageId>
6-
<Description>Simple utilities for queuing and executing cron/time-based jobs in the background.</Description>
5+
<Description>Simple utilities for queuing and executing cron/time-based jobs in the background.</Description>
76
<PackageReadmeFile>README.md</PackageReadmeFile>
87
</PropertyGroup>
98

@@ -12,11 +11,12 @@
1211
</ItemGroup>
1312

1413
<ItemGroup>
15-
<FrameworkReference Include="Microsoft.AspNetCore.App" />
16-
</ItemGroup>
17-
18-
<ItemGroup>
19-
<PackageReference Include="NCrontab" Version="[3.3.0,)" />
14+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="$(DotNetVersion)" />
15+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(DotNetVersion)" />
16+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="$(DotNetVersion)" />
17+
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="$(DotNetVersion)" />
18+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(DotNetVersion)" />
19+
<PackageReference Include="NCrontab" Version="[3.3.0,)" />
2020
</ItemGroup>
2121

2222
</Project>

tests/TickerQ.Tests/TickerQ.Tests.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@
2121
</ItemGroup>
2222

2323
<ItemGroup>
24-
<ProjectReference Include="..\..\src\TickerQ.Utilities\TickerQ.Utilities.csproj" />
25-
<ProjectReference Include="..\..\src\TickerQ\TickerQ.csproj" />
24+
<ProjectReference Include="..\..\src\TickerQ.Dashboard\TickerQ.Dashboard.csproj" />
25+
<ProjectReference Include="..\..\src\TickerQ.Utilities\TickerQ.Utilities.csproj" />
26+
<ProjectReference Include="..\..\src\TickerQ\TickerQ.csproj" />
2627
</ItemGroup>
2728

2829
</Project>

0 commit comments

Comments
 (0)