>Any compatibility issue if I
>compile the winform in .net 2.0,
>
>leave the referenced libraries compilied in .net 1.0
>and use .Net 2.0 CLR to run everything?
Hopefully not, but there are some breaking changes documented here
http://msdn.microsoft.com/netframework/programming/breakingchanges/default.aspx
>if the library use .Net 1.0 version of System.Net
>and the machine has both .Net 1.0 and .Net 2.0 installed
>
>when the library referenced by .Net 2.0 winform
>would it use .Net 1.0 or .Net 2.0 version of the System.Net???
The version that comes with your loaded CLR version, i.e. 2.0.
Mattias

Signature
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Baron Ng - 18 Apr 2006 06:43 GMT
In that case;
the best option is to upgrade (and test) all the assemblies to .Net 2.0?
That's lot of works.....
since we can't just upgrade the 3rd party codes to .Net 2.0~~~~
Thanks anyway!
> >Any compatibility issue if I
> >compile the winform in .net 2.0,
[quoted text clipped - 15 lines]
>
> Mattias