-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMtHangfire.csproj
More file actions
19 lines (17 loc) · 856 Bytes
/
MtHangfire.csproj
File metadata and controls
19 lines (17 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Hangfire.MemoryStorage" Version="1.7.0" />
<PackageReference Include="MassTransit.Azure.ServiceBus.Core" Version="8.0.7" />
<PackageReference Include="MassTransit.Hangfire" Version="8.0.7" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0" />
<PackageReference Include="MassTransit" Version="8.0.7" />
<PackageReference Include="Hangfire.Core" Version="1.7.*" />
<PackageReference Include="Hangfire.SqlServer" Version="1.7.*" />
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.*" />
<PackageReference Include="Hangfire.AzureCosmosDB" Version="2.0.1" />
</ItemGroup>
</Project>