Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS 2008 vs VS 2008 Express

I'm using Visual Studio Team System 2008 at work to do web development. I've gotten quite used to it but can't really afford to purchase even VS 2008 Standard at this time.

I have never used any of the Express editions before but I was thinking about downloading VS C# Express and VS Web Developer Express.

Am I wasting my time or can I do some serious development with these tools?

like image 632
wcm Avatar asked Sep 17 '08 13:09

wcm


People also ask

Is Visual Studio 2008 still supported?

Visual Studio 2008 - Microsoft Lifecycle | Microsoft Learn. This browser is no longer supported. Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

How do I download and install Visual Studio 2008 Express?

To install visual studio 2008, download the files from Microsoft MSDN and navigate to setup.exe, to lunch the installation screen. Then click the Install Visual Studio 2008 link to start the installation. The setup wizard will start copying needed files into a temporary folder. Just wait.

What is vs2008?

It can be used to develop console and graphical user interface applications along with Windows Forms applications, web sites, web applications, and web services in both native code together with managed code for all platforms supported by Microsoft Windows, Windows Mobile, Windows CE, . NET Framework, .


3 Answers

Express Editions works fine if you do not want to have different project types/languages in a solution, and you have no need for builtin source control.

Else, it's pretty much the same.

like image 23
leppie Avatar answered Oct 14 '22 00:10

leppie


You can do serious development on the express editions. They have taken out a few things most notably the plug in system. If you are use to using a bunch of plug ins you may find that not being able to use them is a deterrent.

Here is a link to a comparison of the express edition and the other editions.

http://msdn.microsoft.com/en-us/library/zcbsd3cz(VS.80).aspx

like image 169
Dave Gray Avatar answered Oct 14 '22 01:10

Dave Gray


You can indeed do serious development using the Visual Studio 2008 express editions, this includes commercial products see question number 7 in the FAQ which says:

Seven) Can I use Express Editions for commercial use?
Yes, there are no licensing restrictions for applications built using Visual Studio Express Editions.

The feature matrix shows that whilst you do lose some functionality between the Pro and Express Editions. The single biggest issue being that there is no add-in support (and adding it is forbidden by the EULA) which limits many nice additions to the environment such as ReSharper, VisualAssist, etc.

You also don't get a "Studio" but four individual editions, Web Developer, VB, VC++ and C#, if you wish to mix and match languages/projects in the way that the Standard/Professional Editions support then you are out of luck. Under the surface however, MSBuild is available and can provide you with multi-language solutions.

like image 24
Ray Hayes Avatar answered Oct 14 '22 01:10

Ray Hayes