Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to change .NET framework version of Visual Studio 2005 to 3.5?

Is there a way to change .NET framework version of Visual Studio 2005 to 3.5?

like image 474
Wondering Avatar asked May 20 '09 12:05

Wondering


2 Answers

No. Visual Studio 2005 only supports .NET 2.0 out-of-the-box. It can be updated to support .NET 3.0.

It is possible to compile .NET 3.5 code with a Visual Studio 2008 Express Edition, or without Visual Studio 2008 using Mono and I think the Windows/.NET SDK. However these will obviously not be integrated into Visual Studio 2005.

like image 161
Alex Angas Avatar answered Sep 20 '22 05:09

Alex Angas


Visual Studio 2005 only supports .NET 2.0. The format of the solution file (.sln) changed in Visual Studio 2008 to allow you to select the target .NET version.

like image 27
CoderDennis Avatar answered Sep 24 '22 05:09

CoderDennis