0 votes
in Other by
What are the differences between Visual Studio Code and Visual Studio?

1 Answer

0 votes
by

  • Visual Studio (full version) is a "full-featured" and "convenient" development environment.
  • Visual Studio (free "Express" versions - only until 2017) are feature-centered and simplified versions of the full version. Feature-centered meaning that there are different versions (Visual Studio Web Developer, Visual Studio C#, etc.) depending on your goal.
  • Visual Studio (free Community edition - since 2015) is a simplified version of the full version and replaces the separated express editions used before 2015.
  • Visual Studio Code (VSCode) is a cross-platform (Linux, Mac OS, Windows) editor that can be extended with plugins to your needs.
  • For example, if you want to create an ASP.NET application using Visual Studio Code you need to perform several steps on your own to setup the project. There is a separate tutorial for each OS.

  • Visual Studio Code is an editor while Visual Studio is an IDE.
  • Visual Studio Code is cross-platform and fast, while Visual Studio is not fast.
  • Note that Visual Studio for Mac is available now but is a different product compared to Visual Studio (Windows). It's based on Xamarin Studio and lacks support for some older .NET project types. It does successfully build solutions created in Visual Studio 2017. Visual Studio for Mac has a more limited UI (for example, no customizable toolbar). So for cross-platform work, Visual Studio Code may still be preferable.

I will provide a detailed differences between Visual Studio and Visual Studio Code below.

If you really look at it the most obvious difference is that .NET has been split into two:

.NET Core (Mac, Linux, and Windows)

.NET Framework (Windows only)

All native user interface technologies (Windows Presentation Foundation, Windows Forms, etc.) are part of the framework, not the core.

The "Visual" in Visual Studio (from Visual Basic) was largely synonymous with visual UI (drag & drop WYSIWYG) design, so in that sense, Visual Studio Code is Visual Studio without the Visual!

The second most obvious difference is that Visual Studio tends to be oriented around projects & solutions.

Visual Studio Code:

It's a lightweight source code editor which can be used to view, edit, run, and debug source code for applications.

Simply it is Visual Studio without the Visual UI, majorly a superman’s text-editor.

It is mainly oriented around files, not projects.

It does not have any scaffolding support.

It is a competitor of Sublime Text or Atom on Electron.

It is based on the Electron framework, which is used to build cross platform desktop application using web technologies.

It does not have support for Microsoft's version control system; Team Foundation Server.

It has limited IntelliSense for Microsoft file types and similar features.

It is mainly used by developers on a Mac who deal with client-side technologies (HTML, JavaScript, and CSS).

Visual Studio:

As the name indicates, it is an IDE, and it contains all the features required for project development. Like code auto completion, debugger, database integration, server setup, configurations, and so on.

It is a complete solution mostly used by and for .NET related developers. It includes everything from source control to bug tracker to deployment tools, etc. It has everything required to develop.

It is widely used on .NET related projects (though you can use it for other things). The

community version is free, but if you want to make most of it then it is not free.

Visual Studio is aimed to be the world’s best IDE (integrated development environment), which provide full stack develop toolsets, including a powerful code completion component called IntelliSense, a debugger which can debug both source code and machine code, everything about ASP.NET development, and something about SQL development.

In the latest version of Visual Studio, you can develop cross-platform application without leaving the IDE. And Visual Studio takes more than 8 GB disk space (according to the components you select).

In brief, Visual Studio is an ultimate development environment, and it’s quite heavy.

Related questions

0 votes
asked Dec 19, 2021 in Microsoft Bot Framework by rajeshsharma
0 votes
asked May 14, 2019 in Other by Robindeniel
...