.NET version in Visual Studio 2005
.NET version in Visual Studio 2005
I need to change the .NET version in Visual Studio to .NET 1.1, How do I do it?
Microsoft: "let everyone run after us. We'll just INNOV~1"
Try http://www.icsharpcode.net/OpenSource/SD/Default.aspx if you don't mind using a non-microsoft IDE. The various #develop versions will let you use v1.0, 1.1 or 2 of the .NET framework.
Note that the MS .NET compilers are all free to download from microsoft and part of the SDKs, so you can always download them and compile from the command line if nothing else...
Cheers,
Adam
Note that the MS .NET compilers are all free to download from microsoft and part of the SDKs, so you can always download them and compile from the command line if nothing else...
Cheers,
Adam
Some quick googling revealed: http://janmoons.blogspot.com/2006/01/vi ... e-net.html
It seems that there was a website offering an IDE update to allow it, but the download has been taken down. Most people seem to think that VS2003 is tied to .NET 1.1 and VS2005 is tied to .NET 2.0.
Adam
It seems that there was a website offering an IDE update to allow it, but the download has been taken down. Most people seem to think that VS2003 is tied to .NET 1.1 and VS2005 is tied to .NET 2.0.
Adam
- MuhammadAdel
- Posts: 1
- Joined: Thu Apr 12, 2007 11:49 am
- Location: Cairo - Egypt
The binding to a specific .NET framework is done when running the application and by default it uses the latest runtime installed on the machine.
you can force a specific .NET framework version if you didn't use any features that were not found in .NET 2.0 (such as generics) and added a <supportedRuntime> or a <requiredRuntime> elements in the application's configuration file.
you can force a specific .NET framework version if you didn't use any features that were not found in .NET 2.0 (such as generics) and added a <supportedRuntime> or a <requiredRuntime> elements in the application's configuration file.