Reference 3.5 assembly from 2.0 application? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T20:08:36Zhttp://stackoverflow.com/feeds/question/369425http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/369425/reference-3-5-assembly-from-2-0-application2Reference 3.5 assembly from 2.0 application?Lars A. Brekken2008-12-15T19:23:18Z2009-04-25T13:37:06Z
<p>I have an assembly that is targeted for .NET 3.5.</p>
<p>I have an application targeted for .NET 2.0 and wonder if I should have any trouble referencing the 3.5 assembly from the 2.0 application.</p>
<p>I understand that the IL is supposedly the same, so I'm assuming that it will work, but would like to hear some experiences from others who have tried this.</p>
<p>The runtime environment will have both 2.0 and 3.5 installed.</p>
http://stackoverflow.com/questions/369425/reference-3-5-assembly-from-2-0-application/369441#3694415Answer by Mehrdad Afshari for Reference 3.5 assembly from 2.0 application?Mehrdad Afshari2008-12-15T19:27:00Z2008-12-15T19:27:00Z<p>There's no problem. There is only one runtime version executing the app. .NET Framework v2.0.</p>
http://stackoverflow.com/questions/369425/reference-3-5-assembly-from-2-0-application/575324#5753241Answer by Jim for Reference 3.5 assembly from 2.0 application?Jim2009-02-22T17:55:17Z2009-02-22T17:55:17Z<p>However - when deploying your .net2.0 application, your user will be prompted to install .net3.5 (as there is a .net 3.5 assembly referenced).</p>