How to configure .NET VS 2003 to use .net 2.0
I have .net visual studio 2003 installed on my windows 2003 machine,
along with .net 1.1 framework/sdk.
I'd to like to be able to run my app aslo against .net 2.0 (besides 1.1),
so I have downloaded .NET 2.0 framework and SDK, and have them
installed. Then I tried to modify file:
C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\vsvars32.bat
to switch from 1.1 to 2.0:
--
@SET FrameworkVersion=v1.1.4322
@SET FrameworkSDKDir=C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1
--
to:
----
@SET FrameworkVersion=v2.0.50727
@SET FrameworkSDKDir=C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v2.0
--
after refreshing the environment and restarting vs 2003, and rebuilding the app,
somehow the app is still linked to .net 1.1 SDK and loads .net 1.1 framework.
Could someone tell me if it is possible at all to get VS .net 2003 to work with
both .net 1.1 and 2.0, if so how can that be done in detail?
Thanks,
-jen w.

