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).
Asked
Active
Viewed 238 times
0
Community
- 1
- 1
notAnonymousAnymore
- 2,637
- 9
- 49
- 74
-
"it can't find" Are you getting a compilation error or runtime error? – Magnus Johansson Jun 07 '12 at 08:28
1 Answers
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