Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is "missing" in the Visual Studio 2008 Express Editions?

What is "missing" in the Visual Studio 2008 Express Editions?

In particular,

  • what functionality is not available?
  • what restrictions are there on its use?
like image 238
benefactual Avatar asked Sep 17 '08 19:09

benefactual


People also ask

What happened to Visual Studio Express?

In 2013, Microsoft began supplanting Visual Studio Express with the more feature-rich community edition of Visual Studio, which is also available free of charge. The last version of the Express edition is 2017.

Is Visual Studio 2008 still supported?

In line with our ten-year support policy, Visual Studio 2008, its associated products, runtimes, and components will cease to be supported from April 10, 2018.

What is the difference between Visual Studio 2008 and 2010?

net framework 2.0 visual studio 2008 came out to support 3.0 and 3.5 while visual studio 2010 supports the upcoming . net framework 4.0. Also since the release of visual studio 2008 all newer versions are now backwards compatable to older frameworks. Meaning in visual studio 2008 you are able to work with .


1 Answers

The major areas where Visual Studio Express lacks features compared to Visual Studio Professional:

  • No add-ins/macros
  • Some Win32 tools missing
  • No Team Explorer support
  • Limited refactoring support
  • Debugging is much more limited (particularly problematic for server development is no remote debugging)
  • Lack of support for setup projects
  • No report creation tools
  • No Office development support
  • No mobile platform support
  • Limited set of designers
  • Limited set of database tools
  • No code profiling or test framework support
  • No MFC/ATL support
  • No support for compiling C++ to 64-bit images (workaround is to install Windows SDK which is free)

NOTE: it is often said that the Express EULA does not permit commercial development - that is not true (Visual Studio Express FAQ Item 7)

like image 114
Michael Burr Avatar answered Oct 19 '22 23:10

Michael Burr