0

I am following the answer here. I have downloaded the latest Quartz.dll and it is referenced in my project. I have no issues with the first part of the code (the service part) but it can't find JobDetail, SimpleJob and CronTrigger (the job part of the answer above).

Community
  • 1
  • 1
notAnonymousAnymore
  • 2,637
  • 9
  • 49
  • 74

1 Answers1

0

Things you might check if you get a compilation error:

  • Do you have a mismatch in .NET versions?
  • Does the referred assemblies require a full .NET profile (and you only have a client profile)?
  • Does the referred assemblies build target type match your code? (For example, are they build for 32bit only, and you target 64bit only)
Magnus Johansson
  • 28,010
  • 19
  • 106
  • 164