- Install Hangfire packages (Core, AspNetCore, SqlServer, InMemory) - Configure Hangfire in Program.cs with boolean InMemory flag from appsettings - Add Hangfire dashboard at /hangfire route - Update appsettings.json with Hangfire:InMemory configuration - Update launchSettings.json with new launch URL - Remove obsolete Worker.cs background service
25 lines
979 B
XML
25 lines
979 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.23" />
|
|
<PackageReference Include="Hangfire.Core" Version="1.8.23" />
|
|
<PackageReference Include="Hangfire.InMemory" Version="1.0.0" />
|
|
<PackageReference Include="Hangfire.SqlServer" Version="1.8.23" />
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.2" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ECMJobRunner.Application\ECMJobRunner.Application.csproj" />
|
|
<ProjectReference Include="..\ECMJobRunner.Domain\ECMJobRunner.Domain.csproj" />
|
|
<ProjectReference Include="..\ECMJobRunner.Infrastructure\ECMJobRunner.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|