vote up 0 vote down star

I've developed a server software for .net 3.5 which I tried to convert to a windows service application. So I created a new Windows service project and added all my classes. But I can't compile it because it doesn't understand the lambda expressions i've used. I've checked so that all references are imported. But it seems like it isn't possible to change the target framework in a windows service project and I suspect that it's the problem.

flag

64% accept rate
Next time, please do basic spell checking before posting a question. – OregonGhost Oct 30 at 13:35
Fixed that for you ... – C. Ross Oct 30 at 13:36
In this case, I meant the "sindows" in the title. I don't really care about minor mistakes, but spelling a product name wrong in the question title makes searching harder :) – OregonGhost Oct 30 at 14:16
I have windows services written in .NET 3.5 running with lambda, so it's not a framework problem. Please post the compile error. And be sure you selected .NET Framework 3.5 as your destination framework (Project properties). – Alex Bagnolini Nov 5 at 12:29

2 Answers

vote up 0 vote down

If you try to use the LINQ extension methods but you don't import System.Linq it won't compile. Try:

using System.Linq;
link|flag
vote up 0 vote down

Check your references. Sounds like you are missing a required type. If you post the entire compiler error and maybe some sample code we could probably provide more insight.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.