Reputation: 4249
I wrote a Windows Service in Visual Studio 2008 (c#)
How do I create an *.exe file of my Windows Service?
I am trying to use This guide but can't make it work.
With the help from todda.speot.is found the exe file. now when I'm trying to open it, I get this error:
Upvotes: 0
Views: 601
Reputation: 27214
The output of a Windows Service project is an .exe
. Get is out of the bin\Debug
or bin\Release
folder.
Upvotes: 1