Hello,
Quote:
> Once I deploy my application to a windows machine that only has .net
> 3.0 on it, it would crash. Further investigation revield that
> downgrading from 3.5 to 3.0 somehow does not prevent you from using
> features only present in 3.5.
Nearly the only difference between 3.0 and 3.5 targeting projects is a reference
to the System.Core assembly (and a couple more, like MSBuild's, but that's
a rarer case). That's the thing to check.
C# language features do not depend on the target framework version and work
for 2.0/3.0/3.5 just as good.
(H) Serge