Selecting version of .NET Framework in VS .NET

  • Thread starter Thread starter Teeravee Sirinapasawasdee
  • Start date Start date
T

Teeravee Sirinapasawasdee

How can we select between .NET Framework 1.0 and .NET Framework 1.1 in
Visual Studio .NET if we install both of them?
 
select between .NET Framework 1.0 and 1.1 in Visual Studio

This is only possible with VS.NET 2003.

VS.NET 2002 is like 'hard-wired' to the 1.0 Framework.
http://msdn.microsoft.com/library/en-us/dnnetdep/html/sidexsidenet.asp

You have to update to VS.NET 2003 to build for the 1.1 Fx:
http://msdn.microsoft.com/vstudio/howtobuy/upgrade/vstudio03/
"Order Now", for ~29$+ :
http://msdn.microsoft.com/vstudio/howtobuy/upgrade/vstudio03/addresses.asp

FAQ:
http://msdn.microsoft.com/vstudio/productinfo/faq/

Then you can select the target Fx like:
http://dnetmaster.net/images/VS2003TargetFxCS.png
and VS.NET 2003 automatically generates a .config file for you.

Sure, you have to check for compatibility:
http://msdn.microsoft.com/netframework/productinfo/versioncomparison/
http://www.gotdotnet.com/team/changeinfo/
http://www.gotdotnet.com/team/upgrade/apiChanges.aspx
http://msdn.microsoft.com/library/en-us/cpguide/html/cpcontargetingnetframeworkversion.asp
 
Back
Top