-1

I'm trying to understand the differences between Quartz, Quartz.Jobs, and the Quartz.AspNetCore NuGet packages.

What does Quartz.Jobs provide that is not in the Quartz package, when should I use it and why?

The same question applies to Quartz.AspNetCore. What does it provide and when should I use it?

TylerH
  • 20,799
  • 66
  • 75
  • 101
Jeffery Pyle
  • 1
  • 1
  • 4

1 Answers1

0

Quartz.NET ("Quartz" on NuGet) and Quartz.AspNetCore are simply the same package, but for ASP.NET Framework and ASP.NET Core, respectively.

Quartz.Jobs is an ASP.NET Framework augmented version of Quartz that contains additional job scheduling features.

You can see this information in NuGet or in the code yourself by viewing the modules' dependencies.

TylerH
  • 20,799
  • 66
  • 75
  • 101