0

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.

Vandana
  • 79
  • 1
  • 12

2 Answers2

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