With reference to this question, I would like to know which version (.net 4.0 client profile or full version) should be used for Windows service application and why?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The project templates for Windows Services target the client profile by default so the choice simply comes down to 2 aspects:
a) What framework features does your service need – is everything you need available in the client profile or are you going to be using features that are only in the full framework?
b) Does the size of you installation package matter? E.g. If you’re package is downloaded and bandwidth is a cost for you then keeping your install package small is clearly a benefit. If this is an internally used service then the size of the install package is likely to be less of an issue.