How to create an installer for WCF service that's hosted via Console application
I have a wcf service and I have a console appl开发者_如何转开发ication that hosts the service The console application also holds a SQL-CE database, if it makes any difference. I'm using .net 4 and IIS 7.5?
I prefer doing it with Visual studio 2010 setup project.
If it's hosted in a console application, it means you have to start the console application to start the service.
To start the console you need a user logged in. To make it log in automatically, you can use Autologon.
To create an installer just create a setup project as you would in any windows application.
精彩评论