Running 2 instances of .NET framework

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I currently have 1.1 on my desktop and need to install 2.0 for sqlserver
2005. I'll need the 1.1 framework to continue asp.net development. Can I
have both 1.1 and 2.0 on my computers without problems?

thanks.
 
If you are trying to use two versionsion of .NET make sure that .NET CLR
supports is compatible to both.
In case of CLR 1.0 and CLR 1.1 you need to specify which one should be
invoked during the runtime ..
How ever in your case there will not be any version conflict as you use two
instaces of .NET version which going to use the same CLR version(.NET
FrameWork 1.1)
 
Back
Top