I developed on console application. I finished that successfully.My requirement is,that application automatically run in weekly once. I don’t know how to set automatic debug.Can you please any one help me.
I developed on console application. I finished that successfully.My requirement is,that application automatically run
Share
When you create a Console application, you will get an executable file
*.exe.You may schedule the
exeusing Operating system scheduling. That way you can specify the time and interval for the application to launch itself. You can’t set it to debug through visual studio.Another way could be to create Windows Service application, but probably you don’t need it. Scheduling is a much better option.
You may see this article: How to schedule a program to run automatically.