Files
kitchensink/src/Strata.KitchenSink.Hangfire/Strata.KitchenSink.Hangfire.csproj
T
Thom Lamb 0979371a57 feat: Initialize Strata KitchenSink application boilerplate
This sets up the foundational structure for a .NET Core 6 / React project,
demonstrating common architectural patterns, Docker integration, and key
Strata libraries for API, data access (EF Core), background jobs (Hangfire),
real-time communication (SignalR), and various frontend UI components.
2026-06-23 10:58:15 -05:00

18 lines
619 B
XML

<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<UserSecretsId>dotnet-Strata.KitchenSink.Jobs.Service-D8B8B3CF-E629-4481-AAC6-26BC6694D20B</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.SecurityToken" Version="3.7.100.33" />
<PackageReference Include="Strata.Hangfire.NetCore" Version="3.0.0" />
<PackageReference Include="Strata.Logging" Version="3.6.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Strata.KitchenSink.Biz\Strata.KitchenSink.Biz.csproj" />
</ItemGroup>
</Project>