I wrote a console application that sends MS Reports to emails .. (the reason is that I can easily check it if it works) I want this to continue daily at 6 a.m.
My idea was to write a service (so nooone would need to be logged in and the service would start). Therefore, I would like to call the static method directly in the WebService.
I have a solution with 1 project file, which is my console application (with settings, many links, etc.). I would like to add another project - Windows Service. My question is: how to do this easily, so I would not have to copy all the classes, etc. Into a windows service project?
Or am I completely out of the way? :)
Thank!
source
share