I created a windows service in VS:File->New Project->C#->Windows Services
But I don’t know how to run and test it.VS says I have to install my windows services to run it.but I Just want to test it and I don’t want to install it.Can anybody Help me???
I created a windows service in VS:File->New Project->C#->Windows Services But I don’t know how
Share
To debug your Windows service, add the following in your
Main():And the following method in your class
MyServer:Now hit F5 to debug, as any winform or console application.