Multiple .NET Frameworks conflict

  • Thread starter Thread starter Praveen Naregal
  • Start date Start date
P

Praveen Naregal

Hello all,

In my machine both .NET frameworks are installed. I am using Visual Studio
..NET. It is taking by default framework 1.0. How to specify to the C#
compiler or ASP.NET to take framework 1.1?

Regards,
Praveen Naregal
 
Hi,

When you install framework 1.1, all your existing web apps are
automatically reconfigured to target the new framework 1.1, unless you
specificall use the /noaspupgrade command line option which prevents the
automatic reconfiguration. If you are using vs.net 2002, then I guess that
it is not possible to target the framework 1.1 as it will only use the
framework 1.0

Regards,
John
 
It seems that you are using VS.NET 2002. Versions of VS.NET are tightly
coupled to versions of .NET frameworks. So, to use V1.1 with VS.NET you will
need to upgrade to VS.NET 2003. You however can compile your app against
V1.1 .NET Framework using compilers at the command line.
 
Back
Top