views:

77

answers:

3

Title says it all... I want to compile some code that targets .NET v3.5 in Visual Studio 2005.

I suppose I could download the 2008 Express Editions... do I need both Visual Web Developer AND C#?

+4  A: 

No there is not. That (framework targeting) is a feature that was introduced in VS2008.

To answer your second question that depends. If this is solely a Website/Web Application then you would not need the C# Express. If this is an application/service/etc, then you would need the C# Express.

Stephen Wrighton
A: 

Im not sure if this applies to VS2005 due to Stephen Wrightons answer but i remember that when you create a new project, to the top right of the dialog box that appears there is a drop down box to select the version of the framework you want to use.

Jamie Keeling
Nope - only applies to VS2008 and VS2010
ChrisF
My apologies, i couldnt remember which version it was =/
Jamie Keeling
+1  A: 

You can create a custom MSBuild script to do your builds, making sure that you use latest MSBuild tool. (You still could not build from within Visual Studio though) You are going to have all kinds of problems using VS2005 to build .NET 3.5 apps so I'd recommend against it.

sestocker
Ugh... that would be a pain, but thanks for the suggestion.
Bryan