Reputation: 1207
I'm working on an MVC .net web application. I need to make a windows service for sending mails to persons from database. After I prepare my windows service how to install it? Anyone can provide steps? Actually i don't know how to prepare the service installer
Upvotes: 1
Views: 1177
Reputation: 218892
This is not specific to ASP.NET MVC. MVC is a framework to develop web applications. It has nothing to do with your Windows service.
You need to create an installer project for your service which will install the service on the computer. This page explains it well with sample .
Upvotes: 1