I have created one project to generate PDFs through itextsharp. Now I want to schedule dll of this project to run this project daily at 7 AM. Please help me how we can schedule dll.
Asked
Active
Viewed 1,307 times
2 Answers
1
Use a Task Scheduler or a Windows Service. Both options are explained here: How to execute code in c# service one time per day at the same hour?

Community
- 1
- 1

DotNetDeveloper
- 493
- 1
- 6
- 16
0
Wrap it in an exe and create a Scheduled task to run it daily at 7AM.
search?q=creating+a+scheduled+task

Sam Leach
- 12,746
- 9
- 45
- 73
-
-
Create a new Console Application and reference the dll. A dll has no entry point. – Sam Leach Feb 18 '14 at 11:32