Sharad sez:
how can i update my Visual studio 2002 wid the dotnet sdk
1.1 so i can use this one instead of .net 1
You cannot do this.
Visual Studio .NET 2002 is bound to use the .NET Framework v1.0, regardless
if you have installed the .NET Framework v1.1 runtime or SDK.
Visual Studio .NET 2003 is bound to use the .NET Framework v1.1, regardless
if you have installed the .NET Framework v1.0 runtime or SDK.
Multiple versions of Visual Studio (2002 and 2003) can be installed on the
same machine. Multiple versions of the .NET Framework SDK (1.0 and 1.1) can
be
installed on the same machine. Multiple versions of the .NET Framework
runtime can be installed on the same machine.
If you install VS2002 and the .NET Framework 1.1 SDK, then the way to build
apps
for the .NET Framework 1.1 is to use the command-line tools in the SDK.
It is possible, using a configuration option within VS2003, to specify
that you want the generated application to run against the .NET
Framework v1.0.
To do this in VS.NET 2003, In project explorer
Right click the Project... Properties
under Common Properties
for the Application
select "Supported Runtimes"
and you can specify v1.0, v1.1, or both.
A similar thing is not possible with VS2002; in other words you cannot
specify within VS2002 that you want to build an app that runs against
v1.1 of the .NET Framework.
However, some v1.0 apps "just run" against v1.1.
For more information on "side by side" installation of the .NET
Framework, see these links:
http://msdn.microsoft.com/library/en-us/dnnetdep/html/sidexsidenet.asp
http://www.gotdotnet.com/team/changeinfo/
http://www.3leaf.com/default/articles/ea/SBS.aspx
This is a FAQ.