Dropped support for .NET 6.0 and .NET 7.0 by removing multi-targeting configurations. Updated dependencies to use versions compatible with .NET 8.0, ensuring consistency across all projects. This simplifies maintenance and aligns with the latest .NET standards.
22 lines
718 B
XML
22 lines
718 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Description>
|
|
Provides integration with the Quartz.NET library and provide am implementation of Elsa's IJobScheduler using Quartz.NET.
|
|
</Description>
|
|
<PackageTags>elsa module scheduling quartz</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Quartz" />
|
|
<PackageReference Include="Quartz.Extensions.DependencyInjection" />
|
|
<PackageReference Include="Quartz.Extensions.Hosting" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Elsa.Scheduling\Elsa.Scheduling.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|