Hubbry Logo
Visual StudioVisual StudioMain
Open search
Visual Studio
Community hub
Visual Studio
logo
8 pages, 0 posts
0 subscribers
Be the first to start a discussion here.
Be the first to start a discussion here.
Visual Studio
Visual Studio
from Wikipedia

Visual Studio
DeveloperMicrosoft
Initial releaseMarch 19, 1997
Stable release
2022 17.14.18[1] Edit this on Wikidata / October 20, 2025
Written in[2]
Operating system
Available in13 languages
List of languages
Chinese, Czech, English, French, German, Italian, Japanese, Korean, Polish, Portuguese (Brazil), Russian, Spanish and Turkish[4]
TypeIntegrated development environment
LicenseFreemium[5] Proprietary
Websitevisualstudio.microsoft.com

Visual Studio is an integrated development environment (IDE) developed by Microsoft. It is used to develop computer programs including websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platforms including Windows API, Windows Forms, Windows Presentation Foundation (WPF), Microsoft Store and Microsoft Silverlight. It can produce both native code and managed code.

Visual Studio includes a code editor supporting IntelliSense (the code completion component) as well as code refactoring. The integrated debugger works as both a source-level debugger and as a machine-level debugger. Other built-in tools include a code profiler, designer for building GUI applications, web designer, class designer, and database schema designer. It accepts plug-ins that expand the functionality at almost every level—including adding support for source control systems (like Subversion and Git) and adding new toolsets like editors and visual designers for domain-specific languages or toolsets for other aspects of the software development lifecycle (like the Azure DevOps client: Team Explorer).

Visual Studio supports 36 different programming languages[citation needed] and allows the code editor and debugger to support (to varying degrees) nearly any programming language, provided a language-specific service exists. Built-in languages include C,[6] C++, C++/CLI, Visual Basic .NET, C#, F#,[7] JavaScript, TypeScript, XML, XSLT, HTML, and CSS. Support for other languages such as Python,[8] Ruby, Node.js, and M among others is available via plug-ins. Java (and J#) were supported in the past.

Visual Studio is offered in multiple editions, with the Community edition available free of charge for students, open-source contributors, and individual developers. Microsoft typically releases new major versions every few years. Visual Studio 2022 is the latest stable, production-ready release. A public preview of the next major version, Visual Studio 2026, called "Insiders", is available through the "Insiders channel". The first build of Visual Studio 2026 was released on 9 September 2025. Older versions, including Visual Studio 2017 and 2019, remain under extended support.[9]

Architecture

[edit]

Visual Studio does not support any programming language, solution or tool intrinsically; instead, it allows the plugging of functionality coded as a VSPackage. When installed, the functionality is available as a Service. The IDE provides three services: SVsSolution, which provides the ability to enumerate projects and solutions; SVsUIShell, which provides windowing and UI functionality (including tabs, toolbars, and tool windows); and SVsShell, which deals with registration of VSPackages. In addition, the IDE is also responsible for coordinating and enabling communication between services.[10] All editors, designers, project types and other tools are implemented as VSPackages. Visual Studio uses COM to access the VSPackages. The Visual Studio SDK also includes the Managed Package Framework (MPF), which is a set of managed wrappers around the COM-interfaces that allow the Packages to be written in any CLI compliant language.[11] However, MPF does not provide all the functionality exposed by the Visual Studio COM interfaces.[12] The services can then be consumed for creation of other packages, which add functionality to the Visual Studio IDE.

Support for programming languages is added by using a specific VSPackage called a Language Service. A language service defines various interfaces which the VSPackage implementation can implement to add support for various functionalities.[13] Functionalities that can be added this way include syntax coloring, statement completion, brace matching, parameter information tooltips, member lists, and error markers for background compilation.[13] If the interface is implemented, the functionality will be available for the language. Language services are implemented on a per-language basis. The implementations can reuse code from the parser or the compiler for the language.[13] Language services can be implemented either in native code or managed code. For native code, either the native COM interfaces or the Babel Framework (part of Visual Studio SDK) can be used.[14] For managed code, the MPF includes wrappers for writing managed language services.[15]

Visual Studio does not include any source control support built in but it defines two alternative ways for source control systems to integrate with the IDE.[16] A Source Control VSPackage can provide its own customised user interface. In contrast, a source control plugin using the MSSCCI (Microsoft Source Code Control Interface) provides a set of functions that are used to implement various source control functionality, with a standard Visual Studio user interface.[17][18] MSSCCI was first used to integrate Visual SourceSafe with Visual Studio 6.0 but was later opened up via the Visual Studio SDK. Visual Studio .NET 2002 used MSSCCI 1.1, and Visual Studio .NET 2003 used MSSCCI 1.2. Visual Studio 2005, 2008, and 2010 use MSSCCI Version 1.3, which adds support for rename and delete propagation, as well as asynchronous opening.[18]

Visual Studio supports running multiple instances of the environment (each with its own set of VSPackages). The instances use different registry hives (see MSDN's definition of the term "registry hive" in the sense used here) to store their configuration state and are differentiated by their AppId (Application ID). The instances are launched by an AppId-specific .exe that selects the AppId, sets the root hive, and launches the IDE. VSPackages registered for one AppId are integrated with other VSPackages for that AppId. The various product editions of Visual Studio are created using the different AppIds. The Visual Studio Express edition products are installed with their own AppIds, but the Standard, Professional, and Team Suite products share the same AppId. Consequently, one can install the Express editions side-by-side with other editions, unlike the other editions which update the same installation. The professional edition includes a superset of the VSPackages in the standard edition, and the team suite includes a superset of the VSPackages in both other editions. The AppId system is leveraged by the Visual Studio Shell in Visual Studio 2008.[19]

Features

[edit]

Code editor

[edit]

Visual Studio includes a code editor that supports syntax highlighting and code completion using IntelliSense for variables, functions, methods, loops, and LINQ queries.[20] IntelliSense is supported for the included languages, as well as for XML, Cascading Style Sheets, and JavaScript when developing web sites and web applications.[21][22] Autocomplete suggestions appear in a modeless list box over the code editor window, in proximity of the editing cursor. In Visual Studio 2008 onwards, it can be made temporarily semi-transparent to see the code obstructed by it.[20] The code editor is used for all supported languages.

The code editor in Visual Studio also supports setting bookmarks in code for quick navigation. Other navigational aids include collapsing code blocks and incremental search, in addition to normal text search and regex search.[23] The code editor also includes a multi-item clipboard and a task list.[23] The code editor supports code snippets, which are saved templates for repetitive code and can be inserted into code and customized for the project being worked on. A management tool for code snippets is built in as well. These tools are surfaced as floating windows which can be set to automatically hide when unused or docked to the side of the screen. The code editor in Visual Studio also supports code refactoring including parameter reordering, variable and method renaming, interface extraction, and encapsulation of class members inside properties, among others.

Debugger

[edit]

Visual Studio includes a debugger that works both as a source-level debugger and as a machine-level debugger. It works with both managed code as well as native code and can be used for debugging applications written in any language supported by Visual Studio. In addition, it can also attach to running processes, monitor, and debug those processes.[24] If source code for the running process is available, it displays the code as it is being run. If source code is not available, it can show the disassembly. The Visual Studio debugger can also create memory dumps as well as load them later for debugging.[25] Multi-threaded programs are also supported. The debugger can be configured to be launched when an application running outside the Visual Studio environment crashes.

The Visual Studio Debugger allows setting breakpoints (which allow execution to be stopped temporarily at a certain position) and watches (which monitor the values of variables as the execution progresses).[26] Breakpoints can be conditional, meaning they get triggered when the condition is met. Code can be stepped over, i.e., run one line (of source code) at a time.[27] It can either step into functions to debug inside it, or step over it, i.e., the execution of the function body isn't available for manual inspection.[27] The debugger supports Edit and Continue, i.e., it allows code to be edited as it is being debugged. When debugging, if the mouse pointer hovers over any variable, its current value is displayed in a tooltip ("data tooltips"), where it can also be modified if desired. During coding, the Visual Studio debugger lets certain functions be invoked manually from the Immediate tool window. The parameters to the method are supplied at the Immediate window.[28]

Designer

[edit]

Visual Studio includes many visual designers to aid in the development of applications. These tools include:

Windows Forms Designer
The Windows Forms designer is used to build GUI applications using Windows Forms. Layout can be controlled by housing the controls inside other containers or locking them to the side of the form. Controls that display data (like textbox, list box and grid view) can be bound to data sources like databases or queries. Data-bound controls can be created by dragging items from the Data Sources window onto a design surface.[29] The UI is linked with code using an event-driven programming model. The designer generates either C# or VB.NET code for the application.
WPF Designer
The WPF designer, codenamed Cider,[30] was introduced with Visual Studio 2008. Like the Windows Forms designer it supports the drag and drop metaphor. It is used to author user interfaces targeting Windows Presentation Foundation. It supports all WPF functionality including data binding and automatic layout management. It generates XAML code for the UI. The generated XAML file is compatible with Microsoft Expression Design, the designer-oriented product. The XAML code is linked with code using a code-behind model.
Web designer/development
Visual Studio also includes a web-site editor and designer that allows web pages to be authored by dragging and dropping widgets. It is used for developing ASP.NET applications and supports HTML, CSS and JavaScript. It uses a code-behind model to link with ASP.NET code. From Visual Studio 2008 onwards, the layout engine used by the web designer is shared with the discontinued Expression Web. There is also ASP.NET MVC support for MVC technology as a separate download[31] and ASP.NET Dynamic Data project available from Microsoft.[32]
Class designer
The Class Designer is used to author and edit the classes (including its members and their access) using UML modeling. The Class Designer can generate C# and VB.NET code outlines for the classes and methods. It can also generate class diagrams from hand-written classes.
Data designer
The data designer can be used to graphically edit database schemas, including typed tables, primary and foreign keys and constraints. It can also be used to design queries from the graphical view.
Mapping designer
From Visual Studio 2008 onwards, the mapping designer is used by LINQ to SQL to design the mapping between database schemas and the classes that encapsulate the data. The new solution from ORM approach, ADO.NET Entity Framework, replaces and improves the old technology.

Other tools

[edit]
Properties Editor
The Properties Editor tool is used to edit properties in a GUI pane inside Visual Studio. It lists all available properties (both read-only and those which can be set) for all objects including classes, forms, web pages and other items.
Object Browser
The Object Browser is a namespace and class library browser for Microsoft .NET. It can be used to browse the namespaces (which are arranged hierarchically) in managed assemblies. The hierarchy may or may not reflect the organization in the file system.
Solution Explorer
In Visual Studio parlance, a solution is a set of code files and other resources that are used to build an application. The files in a solution are arranged hierarchically, which might or might not reflect the organization in the file system. The Solution Explorer is used to manage and browse the files in a solution.
Team Explorer
Team Explorer is used to integrate the capabilities of Azure DevOps (either Azure DevOps Services or Azure DevOps Server) into the IDE . In addition to version control integration it provides the ability to view and manage individual work items (including user stories, bugs, tasks and other documents). It is included as part of a Visual Studio installation and is also available as a standalone download.[33][34]
Data Explorer
Data Explorer is used to manage databases on Microsoft SQL Server instances. It allows creation and alteration of database tables (either by issuing T-SQL commands or by using the Data designer). It can also be used to create queries and stored procedures, with the latter in either T-SQL or in managed code via SQL CLR. Debugging and IntelliSense support is available as well.
Server Explorer
The Server Explorer tool is used to manage database connections on an accessible computer. It is also used to browse running Windows Services, performance counters, Windows Event Log and message queues and use them as a datasource.[35]
Dotfuscator Community Edition
Visual Studio includes a free 'light' version of Dotfuscator[36]
Text Generation Framework
Visual Studio includes a full text generation framework called T4 which enables Visual Studio to generate text files from templates either in the IDE or via code.
ASP.NET Web Site Administration Tool
The ASP.NET Web Site Administration Tool allows for the configuration of ASP.NET websites.
Visual Studio Tools for Office
Visual Studio Tools for Office is a SDK and an add-in for Visual Studio that includes tools for developing for the Microsoft Office suite. Previously (for Visual Studio .NET 2003 and Visual Studio 2005) it was a separate SKU that supported only Visual C# and Visual Basic languages or was included in the Team Suite. With Visual Studio 2008, it is no longer a separate SKU but is included with Professional and higher editions. A separate runtime is required when deploying VSTO solutions.

Testing tools

[edit]

Microsoft Visual Studio can write high-quality code with comprehensive testing tools to aid in the development of applications. These tools include:[37]

Unit testing, IntelliTest, Live Unit Testing, Test Explorer, CodeLens test indicators, code coverage analysis, Fakes.[37]

Extensibility

[edit]

Visual Studio allows developers to write extensions for Visual Studio to extend its capabilities. These extensions "plug into" Visual Studio and extend its functionality. Extensions come in the form of macros, add-ins, and packages. Macros represent repeatable tasks and actions that developers can record programmatically for saving, replaying, and distributing. Macros, however, cannot implement new commands or create tool windows. They are written using Visual Basic and are not compiled.[12] Add-Ins provide access to the Visual Studio object model and can interact with the IDE tools. Add-Ins can be used to implement new functionality and can add new tool windows. Add-Ins are plugged into the IDE via COM and can be created in any COM-compliant languages.[12] Packages are created using the Visual Studio SDK and provide the highest level of extensibility. They can create designers and other tools, as well as integrate other programming languages. The Visual Studio SDK provides unmanaged APIs as well as a managed API to accomplish these tasks. However, the managed API isn't as comprehensive as the unmanaged one.[12] Extensions are supported in the Standard (and higher) versions of Visual Studio 2005. Express Editions do not support hosting extensions.

Visual Studio 2008 introduced the Visual Studio Shell that allows for development of a customized version of the IDE. The Visual Studio Shell defines a set of VSPackages that provide the functionality required in any IDE. On top of that, other packages can be added to customize the installation. The Isolated mode of the shell creates a new AppId where the packages are installed. These are to be started with a different executable. It is aimed for development of custom development environments, either for a specific language or a specific scenario. The Integrated mode installs the packages into the AppId of the Professional/Standard/Team System editions, so that the tools integrate into these editions.[19] The Visual Studio Shell is available as a free download.

After the release of Visual Studio 2008, Microsoft created the Visual Studio Gallery. It serves as the central location for posting information about extensions to Visual Studio. Community developers as well as commercial developers can upload information about their extensions to Visual Studio .NET 2002 through Visual Studio 2010. Users of the site can rate and review the extensions to help assess the quality of extensions being posted. An extension is stored in a VSIX file. Internally a VSIX file is a ZIP file that contains some XML files, and possibly one or more DLL's. One of the main advantages of these extensions is that they do not require Administrator rights to be installed. RSS feeds to notify users on updates to the site and tagging features are also planned.[38]

Supported products

[edit]
Microsoft Visual C++
Microsoft Visual C++ is Microsoft's partial implementation of the C and full implementation C++ compiler and associated languages-services and specific tools for integration with the Visual Studio IDE. It can compile either in C mode or C++ mode. For C++, as of version 15.7 it conforms to C++17.[39] The C implementation of Visual Studio 2015 still doesn't support the full standard; in particular, the complex number header complex.h introduced in C99 is unsupported.
Visual C++ supports the C++/CLI specification to write managed code, as well as mixed-mode code (a mix of native and managed code). Microsoft positions Visual C++ for development in native code or in code that contains both native as well as managed components. Visual C++ supports COM as well as the MFC library. For MFC development, it provides a set of wizards for creating and customizing MFC boilerplate code, and creating GUI applications using MFC. Visual C++ can also use the Visual Studio forms designer to design UI graphically. Visual C++ can also be used with the Windows API. It also supports the use of intrinsic functions,[40] which are functions recognized by the compiler itself and not implemented as a library. Intrinsic functions are used to expose the SSE instruction set of modern CPUs. Visual C++ also includes the OpenMP (version 2.0) specification.[41]
Microsoft Visual C#
Microsoft Visual C#, Microsoft's implementation of the C# language, targets the .NET Framework, along with the language services that lets the Visual Studio IDE support C# projects. While the language services are a part of Visual Studio, the compiler is available separately as a part of the .NET Framework. The Visual C# 2008, 2010 and 2012 compilers support versions 3.0, 4.0 and 5.0 of the C# language specifications, respectively. Visual C# supports the Visual Studio Class designer, Forms designer, and Data designer among others.[42]
Microsoft Visual Basic
Microsoft Visual Basic is Microsoft's implementation of the VB.NET language and associated tools and language services. It was introduced with Visual Studio .NET (2002). Microsoft has positioned Visual Basic for Rapid Application Development.[43][44] Visual Basic can be used to author both console applications as well as GUI applications. Like Visual C#, Visual Basic also supports the Visual Studio Class designer, Forms designer, and Data designer among others. Like C#, the VB.NET compiler is also available as a part of .NET Framework, but the language services that let VB.NET projects be developed with Visual Studio, are available as a part of the latter.
Microsoft Visual Web Developer
Microsoft Visual Web Developer is used to create web sites, web applications and web services using ASP.NET. Either C# or VB.NET languages can be used. Visual Web Developer can use the Visual Studio Web Designer to graphically design web page layouts.
Azure DevOps
Azure DevOps is intended for collaborative software development projects and provides version control, work planning and tracking, data collection, and reporting. It also includes the Team Explorer which is integrated inside Visual Studio. On September 10, 2018, Microsoft announced a rebranding of Visual Studio Team Services (VSTS) to Azure DevOps Services and Team Foundation Server (TFS) to Azure DevOps Server.[45]

Previous products

[edit]
Visual FoxPro
Visual FoxPro is a data-centric object-oriented and procedural programming language produced by Microsoft. It derives from FoxPro (originally known as FoxBASE) which was developed by Fox Software beginning in 1984. Visual FoxPro is tightly integrated with its own relational database engine, which extends FoxPro's xBase capabilities to support SQL queries and data manipulation. Visual FoxPro is a full-featured,[46] dynamic programming language that does not require the use of an additional general-purpose programming environment. In 2007, Visual FoxPro was discontinued after version 9 Service Pack 2. It was supported until 2015.[47]
Visual SourceSafe
Microsoft Visual SourceSafe is a source control software package oriented towards small software-development projects. The SourceSafe database is a multi-user, multi-process file-system database, using the Windows file system database primitives to provide locking and sharing support. All versions are multi-user, using SMB (file server) networking.[48][49][50] However, with Visual SourceSafe 2005, other client–server modes were added, Lan Booster and VSS Internet (which used HTTP/HTTPS). Visual SourceSafe 6.0 was available as a stand-alone product[51] and was included with Visual Studio 6.0, and other products such as Office Developer Edition. Visual SourceSafe 2005 was available as a stand-alone product and included with the 2005 Team Suite. Azure DevOps has superseded VSS as Microsoft's recommended platform for source control.
Microsoft Visual J++/Microsoft Visual J#
Microsoft Visual J++ was Microsoft's implementation of the Java language (with Microsoft-specific extensions) and associated language services. It was discontinued as a result of litigation from Sun Microsystems, and the technology was recycled into Visual J#, Microsoft's Java compiler for .NET Framework. J# was available with Visual Studio 2005 (supported until 2015) but was discontinued in Visual Studio 2008.
Visual InterDev
Visual InterDev was used to create web applications using Microsoft Active Server Pages (ASP) technologies. It supports code completion and includes database server management tools. It has been replaced with Microsoft Visual Web Developer.

Editions

[edit]

Microsoft Visual Studio is available in the following editions or SKUs:[52]

Community

[edit]

The Community edition was announced on November 12, 2014, as a new free version, with similar functionality to Visual Studio Professional. Prior to this date, the only free editions of Visual Studio were the feature-limited Express variants. Unlike the Express variants, Visual Studio Community supports multiple languages, and provides support for extensions. Individual developers have no restrictions on their use of the Community edition. The following uses also allow unlimited usage: contributing to Open Source projects, academic research, in a classroom learning environment and for developing and testing device drivers for the Windows operating system. All other use by an organization depends on its classification as an Enterprise (more than 250 employees or more than 1 million USD in annual revenue, per Microsoft).[53] Non-Enterprises may use up to 5 copies without restriction, user number 6 and higher require a commercial license; Enterprise organizations require a commercial license for use outside of the noted exceptions.[53][54] Visual Studio Community is oriented towards individual developers and small teams.[55][56]

Professional

[edit]

As of Visual Studio 2010, the Professional edition is the entry level commercial edition of Visual Studio. (Previously, a more feature restricted Standard edition was available.)[57] It provides an IDE for all supported development languages. MSDN support is available as MSDN Essentials or the full MSDN library depending on licensing. It supports XML and XSLT editing, and can create deployment packages that only use ClickOnce and MSI. It includes tools like Server Explorer and integration with Microsoft SQL Server also. Windows Mobile development support was included in Visual Studio 2005 Standard, however, with Visual Studio 2008, it is only available in Professional and higher editions. Windows Phone 7 development support was added to all editions in Visual Studio 2010. Development for Windows Mobile is no longer supported in Visual Studio 2010. It is superseded by Windows Phone 7.

Enterprise

[edit]

In addition to the features provided by the Professional edition, the Enterprise edition provides a new set of software development, database development, collaboration, metrics, architecture, testing and reporting tools.

History

[edit]

The first version of Visual Studio was Visual Studio 97.[58] Before that, Visual Basic, Visual C++, Visual FoxPro and Visual SourceSafe were sold as separate products.

Product name Code name Release date Version
number
Latest update version Latest update date Support end date[59] Supported
.NET Framework
(no add-on)
Supported .NET
(formerly .NET Core)
(no add-on)
Visual Studio 97 Boston[60] March 19, 1997[61][62][63] 5.0 Service Pack 3 December 4, 1997 Unsupported: June 30, 2003[64][65]
Visual Studio 6.0 Aspen[66] September 2, 1998[67][68] 6.0 Service Pack 6[69] March 29, 2004 Unsupported: September 30, 2005[70][71]
Visual Studio .NET (2002) Rainier[72] February 13, 2002[73] 7.0 Service Pack 1[74] March 8, 2005 Unsupported: July 14, 2009[75] 1.0
Visual Studio .NET 2003 Everett[76] April 24, 2003[77] 7.1 Service Pack 1[78] August 15, 2006 Unsupported: October 8, 2013[79] 1.1
Visual Studio 2005 Whidbey[80] November 7, 2005[81][82] 8.0 Service Pack 1[83] December 15, 2006 Unsupported: April 12, 2016[84] 2.0
Visual Studio 2008 Orcas[85] November 19, 2007[86][87] 9.0 Service Pack 1[88] August 11, 2008 Unsupported: April 10, 2018[89] 2.0, 3.0, 3.5
Visual Studio 2010 Dev10[90] April 12, 2010[91][92][93] 10.0 Service Pack 1[94][95] March 10, 2011 Unsupported: July 14, 2020[96] 2.0–4.0
Visual Studio 2012 Dev11 September 12, 2012[97][98][99] 11.0 Update 5[100] August 24, 2015 Unsupported: January 10, 2023[101] 2.0–4.5
Visual Studio 2013 Dev12 October 17, 2013[102][103] 12.0 Update 5[104] July 20, 2015 Unsupported: April 9, 2024[105] 2.0–4.5.1
Visual Studio 2015 Dev14 July 20, 2015[104][106] 14.0[a] Update 3[107] June 27, 2016 Unsupported: October 14, 2025[108] 2.0–4.6.1 1.0
Visual Studio 2017 Dev15 March 7, 2017[109] 15.0 15.9.78[110] October 14, 2025 Supported: April 13, 2027[111] 3.5–4.7.2 1.0, 1.1, 2.0, 2.1
Visual Studio 2019 Dev16 April 2, 2019[112] 16.0 16.11.52[113][114] October 14, 2025 Supported: April 10, 2029[115] 3.5–4.8 2.1, 2.2, 3.0, 3.1, 5.0
Visual Studio 2022 Dev17 November 8, 2021[116] 17.0 17.14.18[117] October 20, 2025 Latest version: January 13, 2032[118] 3.5, 4.6–4.8.1 2.1, 3.1, 5.0–9.0
Visual Studio 2026 Dev18 September 9, 2025 18.0 18.0.11116.177 October 20, 2025 TBA 3.5, 4.6–4.8.1 5.0-10.0
Legend:
Unsupported
Supported
Latest version
Preview version
Future version

97

[edit]

Microsoft first released Visual Studio (codenamed Boston,[60] for the city of the same name, thus beginning the VS codenames related to places)[60] in 1997, bundling many of its programming tools together for the first time. Visual Studio 97 came in two editions: Visual Studio Professional and Visual Studio Enterprise; the professional edition has three CDs, and the enterprise four CDs. It included Visual J++ 1.1 for Java programming and introduced Visual InterDev for creating dynamically generated web sites using Active Server Pages.[citation needed] There was a single companion CD that contained the Microsoft Developer Network library. Visual Studio 97 is only compatible with Windows 95 and Windows NT 4.0. It is the last version to support Windows NT 4.0 before SP3.

Visual Studio 97 was an attempt at using the same development environment for multiple languages. Visual J++, InterDev, and the MSDN Library had all been using the same 'environment', called Developer Studio.[119]

Visual Studio was also sold as a bundle with the separate IDEs used for Visual C++, Visual Basic and Visual FoxPro.[19]

6.0 (1998)

[edit]

The next version, version 6.0 (codenamed Aspen, after the ski resort in Colorado),[citation needed] was released in June 1998 and is the last version to support the Windows 9x platform, as well as Windows NT 4.0 before SP6, but after SP2.[120] Each version of each language in part also settled to v6.0, including Visual J++ which was prior v1.1, and Visual InterDev at the first release. The v6 edition of Microsoft was the core environment for the next four releases to provide programmers with an integrated look-alike platform. This led Microsoft to transition the development on the platform independent .NET Framework.

Visual Studio 6.0 was the last version to include Visual J++,[121][122] which Microsoft removed as part of a settlement with Sun Microsystems that required Microsoft Internet Explorer not to provide support for the Java Virtual Machine.

Visual Studio 6.0 came in two editions: Professional and Enterprise.[123] The Enterprise edition contained extra features not found in Professional edition, including:

  • Application Performance Explorer
  • Automation Manager
  • Microsoft Visual Modeler
  • RemAuto Connection Manager[citation needed]
  • Visual Studio Analyzer

Visual Studio was also sold as a bundle with the separate IDEs used for Visual C++, Visual Basic and Visual FoxPro.[19]

.NET 2002

[edit]
The default start page of Visual Studio .NET 2002, running on Windows XP

Microsoft released Visual Studio .NET (VS.NET), codenamed Rainier (for Washington's Mount Rainier),[citation needed] in February 2002 (the beta version was released via Microsoft Developer Network in 2001). The biggest change was the introduction of a managed code development environment using the .NET Framework. Programs developed using .NET are not compiled to machine language (like C++ is, for example) but instead to a format called Microsoft Intermediate Language (MSIL) or Common Intermediate Language (CIL). When a CIL application executes, it is compiled while being executed into the appropriate machine language for the platform it is being executed on, thereby making code portable across several platforms. Programs compiled into CIL can be executed only on platforms which have an implementation of Common Language Infrastructure. It is possible to run CIL programs in Linux or Mac OS X using non-Microsoft .NET implementations like Mono and DotGNU.

This was the first version of Visual Studio to require an NT-based Windows platform.[124] The installer enforces this requirement, and is the last version to support Windows NT 4.0 SP6 or later and Windows 2000 before SP3.

Visual Studio .NET 2002 shipped in four editions: Academic, Professional, Enterprise Developer, and Enterprise Architect. Microsoft introduced C# (C-sharp), a new programming language, that targets .NET. It also introduced the successor to Visual J++ called Visual J#. Visual J# programs use Java's language-syntax. However, unlike Visual J++ programs, Visual J# programs can only target the .NET Framework, not the Java Virtual Machine that all other Java tools target.

Visual Basic changed drastically to fit the new framework, and the new version was called Visual Basic .NET. Microsoft also added extensions to C++, called Managed Extensions for C++, so .NET programs could be created in C++.

Visual Studio .NET can produce applications targeting Windows (using the Windows Forms part of the .NET Framework), the Web (using ASP.NET and Web Services) and, with an add-in, portable devices (using the .NET Compact Framework).

The internal version number of Visual Studio .NET 2002 is version 7.0. Microsoft released Service Pack 1 for Visual Studio .NET 2002 in March 2005.[125]

.NET 2003

[edit]
Default start page of Visual Studio .NET 2003 running on Windows XP

In April 2003, Microsoft introduced a minor upgrade to Visual Studio .NET called Visual Studio .NET 2003, codenamed Everett (for the city of the same name).[citation needed] It includes an upgrade to the .NET Framework, version 1.1, and is the first release to support developing programs for mobile devices, using ASP.NET or the .NET Compact Framework. The Visual C++ compiler's standards-compliance improved, especially in the area of partial template specialization. Visual C++ Toolkit 2003 is a version of the same C++ compiler shipped with Visual Studio .NET 2003 without the IDE that Microsoft made freely available. As of 2010 it is no longer available and the Express Editions have superseded it. Visual Studio .NET 2003 also supports Managed C++, which is the predecessor of C++/CLI. The internal version number of Visual Studio .NET 2003 is version 7.1 while the file format version is 8.0.[126] Visual Studio .NET 2003 drops support for Windows NT 4.0, and is the last version to support Windows 2000 SP3 and Windows XP before SP2 and the only version to support Windows Server 2003 before SP1.

Visual Studio .NET 2003 shipped in five editions: Academic, Standard, Professional, Enterprise Developer, and Enterprise Architect. The Visual Studio .NET 2003 Enterprise Architect edition includes an implementation of Microsoft Visio 2002's modeling technologies, including tools for creating Unified Modeling Language-based visual representations of an application's architecture, and an object-role modeling (ORM) and logical database-modeling solution. "Enterprise Templates" were also introduced, to help larger development teams standardize coding styles and enforce policies around component usage and property settings.

Service Pack 1 was released September 13, 2006.[127]

2005

[edit]
Visual Studio 2005 Beta 2 Team Suite installation disc

Visual Studio 2005, codenamed Whidbey (a reference to Whidbey Island in Puget Sound region),[citation needed] was released online in October 2005 and to retail stores a few weeks later. Microsoft removed the ".NET" moniker from Visual Studio 2005 (as well as every other product with .NET in its name), but it still primarily targets the .NET Framework, which was upgraded to version 2.0. It requires Windows 2000 with Service Pack 4, Windows XP with at least Service Pack 2 or Windows Server 2003 with at least Service Pack 1. It is the last version to run on Windows 2000 and also the last version able to target Windows 98 and Windows Me for C++ applications.[128][129]

Visual Studio 2005's internal version number is 8.0 while the file format version is 9.0.[126] Microsoft released Service Pack 1 for Visual Studio 2005 on December 14, 2006.[130] An additional update for Service Pack 1 that offers Windows Vista compatibility was made available on June 3, 2007.[131]

Visual Studio 2005 was upgraded to support all the new features introduced in .NET Framework 2.0, including generics and ASP.NET 2.0. The IntelliSense feature in Visual Studio was upgraded for generics and new project types were added to support ASP.NET web services. Visual Studio 2005 additionally introduces support for a new task-based build platform called Microsoft Build Engine (MSBuild) which employs a new XML-based project file format.[132] Visual Studio 2005 also includes a local web server, separate from IIS, that can host ASP.NET applications during development and testing. It also supports all SQL Server 2005 databases. Database designers were upgraded to support the ADO.NET 2.0, which is included with .NET Framework 2.0. C++ also got a similar upgrade with the addition of C++/CLI which is slated to replace the use of Managed C++.[133] Other new features of Visual Studio 2005 include the "Deployment Designer" which allows application designs to be validated before deployments, an improved environment for web publishing when combined with ASP.NET 2.0 and load testing to see application performance under various sorts of user loads. Starting with the 2005 edition, Visual Studio also added extensive 64-bit support. While the host development environment itself is only available as a 32-bit application, Visual C++ 2005 supports compiling for x86-64 (AMD64 and Intel 64) as well as IA-64 (Itanium).[134] The Platform SDK included 64-bit compilers and 64-bit versions of the libraries.

Microsoft also announced Visual Studio Tools for Applications as the successor to Visual Basic for Applications (VBA) and VSA (Visual Studio for Applications). VSTA 1.0 was released to manufacturing along with Office 2007. It is included with Office 2007 and is also part of the Visual Studio 2005 SDK. VSTA consists of a customized IDE, based on the Visual Studio 2005 IDE, and a runtime that can be embedded in applications to expose its features via the .NET object model. Office 2007 applications continue to integrate with VBA, except for InfoPath 2007 which integrates with VSTA. Version 2.0 of VSTA (based on Visual Studio 2008) was released in April 2008.[135] It is significantly different from the first version, including features such as dynamic programming and support for WPF, WCF, WF, LINQ, and .NET 3.5 Framework.

2008

[edit]

Visual Studio 2008,[136] and Visual Studio Team System 2008[137][138] codenamed Orcas (a reference to Orcas Island, also an island in Puget Sound region, like Whidbey for the previous 2005 release), were released to MSDN subscribers on November 19, 2007, alongside .NET Framework 3.5. The source code for the Visual Studio 2008 IDE is available under a shared source license to some of Microsoft's partners and ISVs.[85] Microsoft released Service Pack 1 for Visual Studio 2008 on August 11, 2008.[139] The internal version number of Visual Studio 2008 is version 9.0 while the file format version is 10.0. Visual Studio 2008 requires Windows XP Service Pack 2 plus Windows Installer 3.1, Windows Server 2003 Service Pack 1 or later. It is the last version available for Windows XP SP2, Windows Server 2003 SP1, as well as the only version to support Windows Vista before SP2 and Windows Server 2008 before SP2 and the last version to support targeting Windows 2000 for C++ applications.[140]

Visual Studio 2008 is focused on development of Windows Vista, 2007 Office system, and Web applications. For visual design, a new Windows Presentation Foundation visual designer and a new HTML/CSS editor influenced by Microsoft Expression Web are included. J# is not included. Visual Studio 2008 requires .NET 3.5 Framework and by default configures compiled assemblies to run on .NET Framework 3.5, but it also supports multi-targeting which lets the developers choose which version of the .NET Framework (out of 2.0, 3.0, 3.5, Silverlight CoreCLR or .NET Compact Framework) the assembly runs on. Visual Studio 2008 also includes new code analysis tools, including the new Code Metrics tool (only in Team Edition and Team Suite Edition).[141] For Visual C++, Visual Studio adds a new version of Microsoft Foundation Classes (MFC 9.0) that adds support for the visual styles and UI controls introduced with Windows Vista.[142] For native and managed code interoperability, Visual C++ introduces the STL/CLR, which is a port of the C++ Standard Template Library (STL) containers and algorithms to managed code. STL/CLR defines STL-like containers, iterators and algorithms that work on C++/CLI managed objects.[143][144]

Visual Studio 2008 features include an XAML-based designer (codenamed Cider), workflow designer, LINQ to SQL designer (for defining the type mappings and object encapsulation for SQL Server data), XSLT debugger, JavaScript Intellisense support, JavaScript Debugging support, support for UAC manifests, a concurrent build system, among others.[145] It ships with an enhanced set of UI widgets, both for Windows Forms and WPF. It also includes a multithreaded build engine (MSBuild) to compile multiple source files (and build the executable file) in a project across multiple threads simultaneously. It also includes support for compiling icon resources in PNG format, introduced in Windows Vista. An updated XML Schema designer was released separately some time after the release of Visual Studio 2008.[146]

Visual Studio Debugger includes features targeting easier debugging of multi-threaded applications. In debugging mode, in the Threads window, which lists all the threads, hovering over a thread displays the stack trace of that thread in tooltips.[147] The threads can directly be named and flagged for easier identification from that window itself.[148] In addition, in the code window, along with indicating the location of the currently executing instruction in the current thread, the currently executing instructions in other threads are also pointed out.[148][149] The Visual Studio debugger supports integrated debugging of the .NET 3.5 Framework Base Class Library (BCL) which can dynamically download the BCL source code and debug symbols and allow stepping into the BCL source during debugging.[150] As of 2010 a limited subset of the BCL source is available, with more library support planned for later.

2010

[edit]

On April 12, 2010, Microsoft released Visual Studio 2010, codenamed Dev10,[90] and .NET Framework 4.[151][152] It is available for Windows Server 2003 SP2, Windows XP SP3, Windows Vista SP2 and Windows Server 2008 SP2 and has support for Windows Server 2008 R2, as well as for Windows 7. It is the last version to support Windows XP SP3, Windows Server 2003 SP2, Windows Server 2003 R2, Windows Vista SP2 and Windows Server 2008 SP2, and the only version to support Windows 7 before SP1 and Windows Server 2008 R2 before SP1.

The Visual Studio 2010 IDE was redesigned which, according to Microsoft, clears the UI organization and "reduces clutter and complexity."[153] The new IDE better supports multiple document windows and floating tool windows,[153] while offering better multi-monitor support. The IDE shell has been rewritten using the Windows Presentation Foundation (WPF), whereas the internals have been redesigned using Managed Extensibility Framework (MEF) that offers more extensibility points than previous versions of the IDE that enabled add-ins to modify the behavior of the IDE.[154]

The new multi-paradigm ML-variant F# forms part of Visual Studio 2010.[155]

Visual Studio 2010 comes with .NET Framework 4 and supports developing applications targeting Windows 7.[153] It supports IBM Db2 and Oracle databases, in addition to Microsoft SQL Server.[153] It has integrated support for developing Microsoft Silverlight applications, including an interactive designer.[153] Visual Studio 2010 offers several tools to make parallel programming simpler: in addition to the Parallel Extensions for the .NET Framework and the Parallel Patterns Library for native code, Visual Studio 2010 includes tools for debugging parallel applications. The new tools allow the visualization of parallel Tasks and their runtime stacks.[156] Tools for profiling parallel applications can be used for visualization of thread wait-times and thread migrations across processor cores.[157] Intel and Microsoft have jointly pledged support for a new Concurrency Runtime in Visual Studio 2010[158] and Intel has launched parallelism support in Parallel Studio as an add-on for Visual Studio.[159]

The Visual Studio 2010 code editor now highlights references; whenever a symbol is selected, all other usages of the symbol are highlighted.[160] It also offers a Quick Search feature to incrementally search across all symbols in C++, C# and VB.NET projects. Quick Search supports substring matches and camelCase searches.[160] The Call Hierarchy feature allows the developer to see all the methods that are called from a current method as well as the methods that call the current one.[160] IntelliSense in Visual Studio supports a consume-first mode which developers can opt into. In this mode, IntelliSense does not auto-complete identifiers; this allows the developer to use undefined identifiers (like variable or method names) and define those later. Visual Studio 2010 can also help in this by automatically defining them, if it can infer their types from usage.[160] Current versions of Visual Studio have a known bug which makes IntelliSense unusable for projects using pure C (not C++).[161]

Visual Studio 2010 features a new Help System replacing the MSDN Library viewer. The Help System is no longer based on Microsoft Help 2 and does not use Microsoft Document Explorer. Dynamic help containing links to help items based on what the developer was doing at the time was removed in the final release,[162] but can be added back using a download from Microsoft.[163]

Visual Studio 2010 no longer supports development for Windows Mobile prior to Windows Phone 7. Visual Studio 2010 Service Pack 1 was released in March 2011.[164]

Ultimate 2010

[edit]

Visual Studio Ultimate 2010 replaces Visual Studio 2008 Team Suite.[165] It includes new modeling tools,[166] such as the Architecture Explorer, which graphically displays projects and classes and the relationships between them.[167][168] It supports UML activity diagram, component diagram, (logical) class diagram, sequence diagram, and use case diagram.[168] Visual Studio Ultimate 2010 also includes Test Impact Analysis which provides hints on which test cases are impacted by modifications to the source code, without actually running the test cases.[169] This speeds up testing by avoiding running unnecessary test cases.

Visual Studio Ultimate 2010 also includes a historical debugger for managed code called IntelliTrace. Unlike a traditional debugger that records only the currently active stack, IntelliTrace records all events, such as prior function calls, method parameters, events and exceptions. This allows the code execution to be rewound in case a breakpoint was not set where the error occurred.[170] Debugging with IntelliTrace causes the application to run more slowly than debugging without it, and uses more memory as additional data needs to be recorded. Microsoft allows configuration of how much data should be recorded, in effect, allowing developers to balance the speed of execution and resource usage. The Lab Management component of Visual Studio Ultimate 2010 uses virtualization to create a similar execution environment for testers and developers. The virtual machines are tagged with checkpoints which can later be investigated for issues, as well as to reproduce the issue.[171] Visual Studio Ultimate 2010 also includes the capability to record test runs that capture the specific state of the operating environment as well as the precise steps used to run the test. These steps can then be played back to reproduce issues.[172]

2012

[edit]
Microsoft Visual Studio 2012 logo

The final build of Visual Studio 2012 was announced on August 1, 2012, and the official launch event was held on September 12, 2012.[173]

Unlike prior versions, Visual Studio 2012 cannot record and play macros and the macro editor has been removed.[174] Also unlike prior versions, Visual Studio 2012 require Windows 7 SP1 and Windows Server 2008 R2 SP1.

New features include support for WinRT and C++/CX (Component Extensions) and C++ AMP (GPGPU programming) Semantic Colorization.[175]

Cross-compiling to ARM32 is supported from an x86 command prompt.

On September 16, 2011, a complete 'Developer Preview' of Visual Studio 11 was published on Microsoft's website. Visual Studio 11 Developer Preview requires Windows 7, Windows Server 2008 R2, Windows 8, or later operating systems.[176] Versions of Microsoft Foundation Class Library (MFC) and C runtime (CRT) included with this release cannot produce software that is compatible with Windows XP or Windows Server 2003 except by using native multi-targeting and foregoing the newest libraries, compilers, and headers.[177] However, on June 15, 2012, a blog post on the VC++ Team blog announced that based on customer feedback, Microsoft would re-introduce native support for Windows XP targets (though not for XP as a development platform) in a version of Visual C++ to be released later in the fall of 2012.[178] "Visual Studio 2012 Update 1" (Visual Studio 2012.1) was released in November 2012. This update added support for Windows XP targets and also added other new tools and features (e.g. improved diagnostics and testing support for Windows Store apps).[179]

On August 24, 2011, a blog post by Sumit Kumar, a Program Manager on the Visual C++ team, listed some of the features of the upcoming version of the Visual Studio C++ IDE:[180]

  • Semantic colorization: Improved syntax coloring, various user-defined or default colors for C++ syntax such as macros, enumerations, typenames and functions.[180]
  • Reference highlighting: Selection of a symbol highlights all of the references to that symbol within scope.[180]
  • New Solution Explorer: The new Solution Explorer allows for visualization of class and file hierarchies within a solution/project. It can search for calls to functions and uses of classes.[180]
  • Automatic display of IntelliSense list: IntelliSense is automatically displayed whilst typing code, as opposed to previous versions where it had to be explicitly invoked through use of certain operators (i.e. the scope operator (::)) or shortcut keys (Ctrl-Space or Ctrl-J).[180]
  • Member list filtering: IntelliSense uses fuzzy logic to determine which functions/variables/types to display in the list.[180]
  • Code snippets: Code snippets are included in IntelliSense to automatically generate relevant code based on the user's parameters, custom code snippets can be created.[180]

The source code of Visual Studio 2012 consists of approximately 50 million lines of code.[181]

Interface backlash

[edit]

During Visual Studio 11 beta, Microsoft eliminated the use of color within tools except in cases where color is used for notification or status change purposes. However, the use of color was returned after feedback demanding more contrast, differentiation, clarity and "energy" in the user interface.[182][183]

In the Visual Studio 2012 release candidate (RC), a major change to the interface is the use of all-caps menu bar, as part of the campaign to keep Visual Studio consistent with the direction of other Microsoft user interfaces, and to provide added structure to the top menu bar area.[184] The redesign was criticized for being hard to read, and going against the trends started by developers to use CamelCase to make words stand out better.[185] Some speculated that the root cause of the redesign was to incorporate the simplistic look and feel of Metro programs.[186] However, there exists a Windows Registry option to allow users to disable the all-caps interface.[187]

2013

[edit]

The preview for Visual Studio 2013 was announced at the Build 2013 conference and made available on June 26, 2013.[188] The Visual Studio 2013 RC (Release Candidate) was made available to developers on MSDN on September 9, 2013.[189]

The final release of Visual Studio 2013 became available for download on October 17, 2013, along with .NET 4.5.1.[190] Visual Studio 2013 officially launched on November 13, 2013, at a virtual launch event keynoted by S. Somasegar and hosted on events.visualstudio.com.[191] "Visual Studio 2013 Update 1" (Visual Studio 2013.1) was released on January 20, 2014.[192] Visual Studio 2013.1 is a targeted update that addresses some key areas of customer feedback.[193] "Visual Studio 2013 Update 2" (Visual Studio 2013.2) was released on May 12, 2014.[194] Visual Studio 2013 Update 3 was released on August 4, 2014. With this update, Visual Studio provides an option to disable the all-caps menus, which was introduced in VS2012.[195] "Visual Studio 2013 Update 4" (Visual Studio 2013.4) was released on November 12, 2014.[196] "Visual Studio 2013 Update 5" (Visual Studio 2013.5) was released on July 20, 2015.[197]

Visual Studio 2013 also adds support for Windows 8.1 and Windows Server 2012 R2.

2015

[edit]

Initially referred to as Visual Studio "14", the first Community Technology Preview (CTP) was released on June 3, 2014[198] and the Release Candidate was released on April 29, 2015; Visual Studio 2015 was officially announced as the final name on November 12, 2014.[199]

Visual Studio 2015 RTM was released on July 20, 2015.[197] Visual Studio 2015 Update 1 was released on November 30, 2015.[197] Visual Studio 2015 Update 2 was released on March 30, 2016.[197] Visual Studio 2015 Update 3 was released on June 27, 2016.[197] Visual Studio 2015 is the first version to support Windows 10 and the last version to support Windows 8, Windows Server 2008 R2 SP1 and Windows Server 2012; it's also the last version to support targeting Windows XP SP3, Windows Server 2003 SP2, Windows Vista SP2 and Windows Server 2008 SP2 for C++ applications.

2017

[edit]
Microsoft Visual Studio 2017 Logo
Microsoft Visual Studio 2017 logo

Initially referred to as Visual Studio "15", it was released on March 7, 2017.[200] The first Preview was released on March 30, 2016.[201] Visual Studio "15" Preview 2 was released May 10, 2016.[202][203] Visual Studio "15" Preview 3 was released on July 7, 2016.[204][205] Visual Studio "15" Preview 4 was released on August 22, 2016.[206][207] Visual Studio "15" Preview 5 was released on October 5, 2016.[208]

On November 14, 2016, for a brief period of time, Microsoft released a blog post revealing Visual Studio 2017 product name version alongside upcoming features.[209]

On November 16, 2016, "Visual Studio 2017" was announced as the final name,[210] and Visual Studio 2017 RC was released.[211]

On March 7, 2017, Visual Studio 2017 was released for general availability.[211] It requires Windows 7 SP1, Windows 8.1 with KB2919355 or Windows Server 2012 R2 with KB2919355 at the minimum, and also added support for Windows Server 2016.

On March 14, 2017, first fix was released for Visual Studio 2017 due to failures during installation or opening solutions in the first release.[211]

On April 5, 2017, Visual Studio 2017 15.1 was released and added support for targeting the .NET Framework 4.7.

On May 10, 2017, Visual Studio 2017 15.2 was released and added a new workload, "Data Science and Analytical Applications Workload". An update to fix the dark color theme was released on May 12, 2017.

On August 14, 2017, Visual Studio 2017 15.3 was released and added support for targeting .NET Core 2.0. An update (15.3.1) was released four days later to address a Git vulnerability with submodules (CVE 2017-1000117).

On October 10, 2017, Visual Studio 15.4 was released.[212]

On December 4, 2017, Visual Studio 15.5 was released. This update contained major performance improvements, new features, as well as bug fixes.[213]

On March 6, 2018, Visual Studio 15.6 was released. It includes updates to unit testing and performance.[214]

On May 7, 2018, Visual Studio 15.7 was released. It included updates across the board including, the installer, editor, debugger among others. Almost all point releases, the latest of which is 15.7.6 released August 2, 2018, include security updates. With the release of Visual Studio 2017 15.7, Visual C++ now conforms to the C++17 standard.[39]

On September 20, 2018, Visual Studio 15.8.5 was released. Tools for Xamarin now supports Xcode 10.[215]

On November 15, 2018, Visual Studio 2017 15.9 was released and support for targeting ARM64 for Windows 10 was provided. Previously only ARM32 was supported as a target.[216]

Visual Studio 2017 offers new features like support for EditorConfig (a coding style enforcement framework), NGen support, .NET Core and Docker toolset (Preview), and Xamarin 4.3 (Preview).[211] It also has a XAML Editor, improved IntelliSense, live unit testing, debugging enhancement and better IDE experience and productivity. Additionally, it is the last version of Visual Studio to support maintaining Windows 10 Mobile projects.[217]

2019

[edit]
Visual Studio 2019 Icon
Visual Studio 2019 icon

On June 6, 2018, Microsoft announced Visual Studio 2019 (version 16).[218]

On December 4, 2018, Visual Studio 2019 Preview 1 was released.[219]

On January 24, 2019, Visual Studio 2019 Preview 2 was released.[220]

On February 13, 2019, Visual Studio 2019 Preview 3 was released.[221]

On February 27, 2019, Visual Studio 2019 RC was released while setting April 2, 2019 for its general availability.[222]

It is generally available (GA) since April 2, 2019 and available for download.[112]

On September 23, 2019, Visual Studio 2019 16.3 was released and added support for targeting the .NET Framework 4.8.

Visual Studio 2019 is the first version of Visual Studio to support Windows 11, and also requires Windows 7 SP1, Windows 8.1 with KB2919355, Windows Server 2012 R2 with KB2919355 or Windows 10, version 1703 at the minimum. It is the last 32-bit version of Visual Studio as later versions are only 64-bit. It is also the last version to support Windows 7 SP1, Windows 8.1 and Windows Server 2012 R2, with later versions requiring at least Windows 10 and Windows Server 2016.

2022

[edit]
Splash screen of Visual Studio 2022

On April 19, 2021, Microsoft announced Visual Studio 2022 (version 17).[223][224] It is the first version to run as a 64-bit process allowing Visual Studio main process to access more than 4 GB of memory, preventing out-of-memory exceptions which could occur with large projects.

On June 17, 2021, Visual Studio 2022 Preview 1 was released.[225]

On July 14, 2021, Visual Studio 2022 Preview 2 was released.[226]

On August 10, 2021, Visual Studio 2022 Preview 3 was released.[227]

On September 14, 2021, Visual Studio 2022 Preview 4 was released.[228]

On October 12, 2021, Visual Studio 2022 RC and Preview 5 was released while setting November 8, 2021 for its general availability.[229]

It is generally available (GA) since November 8, 2021 and available for download.[230]

It is available only for Windows 10 and Windows Server 2016 or later, and also supports Windows Server 2022.

On August 9, 2022, Visual Studio 17.3 was released and added support for targeting the .NET Framework 4.8.1.

On November 8, 2022, Visual Studio 17.4 was released and provided an ARM64 native version of the compiler itself, not just the ability to target ARM from x86/x64 (real or emulated on ARM64).[231]

2026

[edit]

Ahead of a stable release Microsoft made an "insider" version of Visual Studio 2026 available on 9 September 2025. The new version focuses on deeper AI integration, namely GitHub Copilot, and performance improvements.[232][233]

[edit]

Azure DevOps Services

[edit]

On November 13, 2013, Microsoft announced the release of a software as a service offering of Visual Studio on Microsoft Azure platform; at the time, Microsoft called it Visual Studio Online. Previously announced as Team Foundation Services, it expanded over the on-premises Team Foundation Server (TFS; now known as Azure DevOps Server) by making it available on the Internet and implementing a rolling release model.[234][235] Customers could use Azure portal to subscribe to Visual Studio Online. Subscribers receive a hosted Git-compatible version control system, a load-testing service, a telemetry service and an in-browser code editor codenamed "Monaco".[236] During the Connect(); 2015 developer event on November 18, 2015, Microsoft announced that the service was rebranded as "Visual Studio Team Services (VSTS)".[237] On September 10, 2018, Microsoft announced another rebranding of the service, this time to "Azure DevOps Services".[45]

Microsoft offers Stakeholder, Basic, and Visual Studio subscriber access levels for Azure DevOps Services. The Basic plan is free of charge for up to five users. Users with a Visual Studio subscription can be added to a plan with no additional charge.[238]

Visual Studio Application Lifecycle Management

[edit]

Visual Studio Application Lifecycle Management (ALM) is a collection of integrated software development tools developed by Microsoft. These tools currently consist of the IDE (Visual Studio 2015 Community and greater editions), server (Team Foundation Server), and cloud services (Visual Studio Team Services).[239] Visual Studio ALM supports team-based development and collaboration, Agile project management, DevOps, source control, packaging, continuous development, automated testing, release management, continuous delivery, and reporting tools for apps and services.[240]

In Visual Studio 2005 and Visual Studio 2008, the brand was known as Microsoft Visual Studio Team System (VSTS). In October 2009, the Team System brand was renamed[166][241] Visual Studio ALM with the Visual Studio 2010 (codenamed 'Rosario') release.[242]

Visual Studio Team Services debuted as Visual Studio Online in 2013 and was renamed in 2015.[243]

Visual Studio Lab Management

[edit]

Visual Studio Lab Management is a software development tool developed by Microsoft for software testers to create and manage virtual environments. Lab Management extends the existing Visual Studio Application Lifecycle Management platform to enable an integrated Hyper-V based test lab. Since Visual Studio 2012, it is already shipped as a part of it; and, can be set up after Azure DevOps and SCVMM are integrated.[244]

Visual Studio LightSwitch

[edit]

Microsoft Visual Studio LightSwitch is an extension and framework specifically tailored for creating line-of-business applications built on existing .NET technologies and Microsoft platforms. The applications produced are architecturally 3-tier: the user interface runs on either Microsoft Silverlight or HTML 5 client,[245] or as a SharePoint 2013 app;[246] the logic and data-access tier is built on WCF Data Services and exposed as an OData feed hosted[247] in ASP.NET; and the primary data storage supports Microsoft SQL Server Express, Microsoft SQL Server and Microsoft SQL Azure. LightSwitch also supports other data sources including Microsoft SharePoint, OData and WCF RIA Services.

LightSwitch includes graphical designers for designing entities and entity relationships, entity queries, and UI screens. Business logic may be written in either Visual Basic or Visual C#. LightSwitch is included with Visual Studio 2012 Professional and higher. Visual Studio 2015 is the last release of Visual Studio that includes the LightSwitch tooling.[248]

The user interface layer is now an optional component when deploying a LightSwitch solution, allowing a service-only deployment.[249]

The first version of Visual Studio LightSwitch, released July 26, 2011,[250] had many differences from the current[when?] release of LightSwitch. Notably the tool was purchased and installed as a stand-alone product. If Visual Studio 2010 Professional or higher was already installed on the machine, LightSwitch would integrate into that.[251] The second major difference was the middle tier was built and exposed using WCF RIA Services.

As of October 14, 2016, Microsoft no longer recommends LightSwitch for new application development.[252]

Visual Studio Code

[edit]

Visual Studio Code is a freeware source code editor, along with other features, for Linux, Mac OS, and Windows.[253] It also includes support for debugging and embedded Git Control. It is built on open-source,[254] and on April 14, 2016, version 1.0 was released.[255]

Visual Studio Team System Profiler

[edit]

Visual Studio Team System Profiler (VSTS Profiler) is a tool to analyze the performance of .NET projects that analyzes the space and time complexity of the program.[256] It analyzes the code and prepares a report that includes CPU sampling, instrumentation, .NET memory allocation and resource contention.

See also

[edit]

Notes

[edit]

References

[edit]
[edit]
Revisions and contributorsEdit on WikipediaRead on Wikipedia
from Grokipedia
Visual Studio is an (IDE) developed by that enables developers to write, edit, debug, build, and deploy applications across multiple platforms and programming languages. First released in 1997 as Visual Studio 97, it has evolved into a comprehensive toolset supporting modern workflows, including AI-assisted coding, integration, and cloud deployment. The IDE supports a wide array of programming languages, such as C++, C#, , F#, , , and Python, allowing developers to create applications for Windows, web, mobile, desktop, and environments like Azure. Visual Studio also supports multiple user interface languages, including Chinese (Simplified), enabling users to change the display language by installing language packs through the Visual Studio Installer. Key features include IntelliSense for , advanced tools, built-in testing frameworks, and seamless integration with for source control, enabling restoration of files to previous states at specific time points through version control commits, and collaboration via Live Share. Recent versions, including Visual Studio 2026, incorporate AI capabilities such as for enhanced productivity and code generation. Visual Studio is available in three main editions tailored to different user needs: , which is free for individual developers, students, open-source projects, and small teams (up to five users in non-enterprise organizations); , a paid subscription for small teams and enterprises focusing on core development tools; and Enterprise, also subscription-based, offering advanced features like IntelliTrace, live dependency validation, and architecture tools for large-scale projects. These editions share a modular installer for customizing workloads, ensuring flexibility for diverse development scenarios.

Overview

Definition and Purpose

Visual Studio is an (IDE) developed and maintained by , designed to facilitate the creation of applications spanning desktop, web, mobile, cloud, and AI-driven scenarios. As a comprehensive toolset, it enables developers to write, edit, debug, build, and deploy code in a unified workspace, supporting modern cross-platform development for targets including Windows, macOS, , iOS, and Android. Originally launched in 1997 as Visual Studio 97, the IDE emerged as a bundled suite of development tools primarily for languages such as , C++, and Visual C++ to streamline Windows application development. Over time, it evolved into a full-stack development platform with deep integration of the .NET framework, introduced in subsequent versions to support , web services, and enterprise-scale applications. This progression shifted its focus from Windows-centric tools to a versatile ecosystem accommodating diverse project types. The primary benefits of Visual Studio lie in its unified environment that encompasses coding, , testing, and deployment workflows, thereby enhancing developer productivity through built-in , intelligent suggestions, and seamless tool integrations. The latest version, Visual Studio 2026 (released , 2025), supports a wide array of programming languages with particular emphasis on .NET ecosystem languages like C#, F#, and , alongside C++, /, Python, and extensions for others. It features AI-native capabilities, including deeply integrated for , assistance, test generation, and enhanced productivity tools.

Development Platforms Supported

Visual Studio primarily supports development on Windows as its native host operating system, where the full (IDE) runs on and (version 22H2 and later, including LTSC editions). The IDE has no official support for Linux and no reliable compatibility via Wine; specifically, Visual Studio 2013 does not run reliably under Wine on Linux, with issues including crashes, failure to load projects, and major functionality problems due to missing Windows-specific dependencies and APIs that Wine does not fully support for such complex applications. Users typically recommend using a Windows virtual machine or alternatives like Visual Studio Code for Linux development instead. For Linux development, Visual Studio enables cross-compilation and remote debugging of C++, Python, , and .NET Core/ applications targeting distributions such as 16.04 through 24.10 and 9 through 10, using the Linux development workload and tools like WSL or remote SSH connections. On macOS, direct support has transitioned following the end of maintenance for Visual Studio for Mac on August 31, 2024; developers now use Visual Studio on Windows with a networked Mac for iOS builds or rely on for macOS-native editing and building of console and web applications. The IDE facilitates building applications for a diverse array of device targets. For desktop applications, it supports Windows desktop via frameworks like WinForms and WPF, alongside cross-platform options through .NET MAUI for Windows, macOS, and environments. Web development targets include browser-based applications using and , enabling deployment to any web server. Mobile targets encompass Android and via .NET MAUI, which unifies development for single-project solutions across these platforms, as well as C++ and Unity for native mobile apps; iOS builds require on a Mac. Cloud integration allows targeting Azure services directly from the IDE, while embedded and IoT development supports Windows IoT Core/Enterprise and Azure Sphere for devices like . Deployment environments supported by Visual Studio span traditional and modern infrastructures. Applications can be deployed to on-premises Windows Servers (versions 2025, 2022, 2019, 2016) for native or managed code. Azure cloud services are natively integrated, allowing one-click publishing of web apps, APIs, and functions to App Service, Container Apps, or Virtual Machines. Containerization via Docker is enabled through built-in tools for building, debugging, and deploying container images to Azure Container Registry or clusters. Serverless architectures are supported via Azure Functions, where developers can create, test, and deploy event-driven code without managing infrastructure.

Architecture

Core Components

Visual Studio's architecture is built on a modular structure centered around the Visual Studio Shell, which acts as the core IDE framework responsible for integrating various components and enabling extensibility through VSPackages. The shell provides essential services such as command routing, UI context management, and shared windows like the Properties window and , allowing extensions to leverage common functionality without duplicating code. It incorporates the project system, which organizes code files, resources, and dependencies into projects, and the Solution Explorer, a tool window that hierarchically displays solutions—containers for one or more related projects stored in .sln files—facilitating navigation and management within the IDE. For Visual Studio C++ projects specifically, the structure follows a hierarchy of solution (.sln) → project (.vcxproj) → source code (.cpp). In this context, .vcxproj files are the project files that define a single project's build settings, configurations, compiler/linker options, and references to source files (such as .cpp and .h files), while .cpp files contain the actual C++ implementation, including functions, classes, and logic. This supports delay-loading of packages to optimize startup time and resource usage. Key internal components include the editor host, which for .NET languages like C# and relies on the Roslyn .NET Compiler Platform to provide language services for code parsing and analysis. The build engine, MSBuild, handles compilation by processing project files to invoke compilers and tools, generating outputs such as executables and libraries. integration serves as the package manager, allowing seamless addition, restoration, and management of dependencies directly within the IDE via the Package Manager UI. These components interact through well-defined interfaces, such as COM for legacy support and MEF for modern extensions. In terms of data flow, solutions encapsulate , with the project system using IVsHierarchy interfaces to track items, selections, and configurations; the Solution Explorer visualizes this structure, enabling interactions like adding files or building subsets. Workspaces extend this model for "Open Folder" scenarios, representing collections of files without traditional files and providing services for and . During builds, MSBuild evaluates dependencies and produces binaries in the Common Object File Format (COFF), a standard for object files, executables, and DLLs on Windows platforms, ensuring compatibility with tools like LINK.exe. To enhance performance, particularly for large solutions, Visual Studio employs project caching to store loaded project data, accelerating subsequent opens by reusing cached information instead of reparsing files. Extensions and certain services, such as Roslyn analyzers, often run in isolated processes via mechanisms like ServiceHub to contain potential failures and prevent IDE-wide crashes, maintaining stability during intensive operations. This isolation, combined with caching, supports efficient handling of complex, multi-project environments. Extensibility is further enabled through the Visual Studio SDK, which provides APIs for integrating custom components.

Underlying Technologies

Visual Studio leverages the Roslyn compiler platform, also known as the .NET Compiler Platform, to provide advanced compilation, code analysis, and language services for C# and Visual Basic .NET projects. Roslyn serves as the open-source compiler for these languages, enabling features such as real-time syntax analysis, semantic understanding, and extensibility for custom tools and analyzers. This platform replaces the previous proprietary compilers, allowing developers to interact directly with the compilation process through APIs for tasks like code generation and refactoring. For C++ development, Visual Studio integrates the /LLVM toolchain as an alternative to the Microsoft Visual C++ (MSVC) compiler, supporting cross-platform builds and standards compliance. provides faster compilation times and enhanced diagnostics compared to traditional compilers, with Visual Studio shipping updated versions of LLVM tools in recent releases, including Visual Studio 2026 version 18.0 (as of November 2025). This integration allows developers to select as the backend for C++ projects within the IDE, facilitating builds for Windows, , and other targets. In Visual Studio 2026, key updates to underlying technologies include the MSVC Build Tools version 14.50, which adds support for new and C++26 features, and 4.1.2 integrated by default for improved cross-platform project management. TypeScript support in Visual Studio includes direct integration with the TypeScript compiler (tsc), enabling compilation of TypeScript files into within projects. Developers can configure per-project TypeScript versions via packages or , with the IDE handling builds automatically during solution compilation. This setup supports features like IntelliSense for TypeScript and of compiled output. Visual Studio integrates with various runtimes to support diverse application development. For .NET applications, it targets the (CLR) in the .NET Framework for legacy Windows-specific projects and CoreCLR in modern .NET (formerly .NET Core) for cross-platform scenarios, providing and deployment tools tailored to each. integration allows for and web development, with the IDE supporting package management, frameworks, and direct of runtimes. Python development relies on external interpreters, such as those from python.org or Anaconda, which Visual Studio detects and manages through the Python Environments window for environment-specific execution and . The tooling stack in Visual Studio is built around MSBuild, Microsoft's extensible build engine, which processes project files (.csproj, .vcxproj) to orchestrate compilation, linking, and dependency resolution across languages. For , VSTest serves as the test runner, executing tests from frameworks like MSTest, , and , with support for parallel execution and analysis. integration uses the libgit2 library to implement repository operations directly in the IDE, enabling features like branching, merging, and pull requests without external tools. Security and compliance features in Visual Studio include support for validated modes, ensuring that cryptographic operations adhere to federal standards when enabled via on Windows systems. Code analysis integrates with through build tasks and extensions, allowing static analysis for vulnerabilities, bugs, and code smells during compilation. Additionally, Visual Studio can leverage Windows Defender for endpoint protection during development workflows, such as scanning builds and extensions for threats.

Features

Code Editing and IntelliSense

Visual Studio's code editor provides advanced text editing capabilities designed to enhance developer productivity across multiple programming languages. Key features include multi-language , which colors code elements such as keywords, strings, and comments for better readability and error detection; , allowing users to collapse and expand regions like methods or classes to manage complex code structures; and bracket matching, which highlights corresponding delimiters to prevent syntax errors. These features are customizable through the Tools > Options > Text Editor settings, enabling adjustments to font, colors, and behavior for individual languages or globally. The editor supports , folding, and other services for over 50 languages through built-in Language Services and extensions, including core languages like C#, , C++, Python, , and , as well as others such as F#, , and via additional configuration. IntelliSense serves as the primary code-completion system, offering real-time suggestions to accelerate coding and reduce errors. It includes list members for autocompletion, which displays context-aware options after trigger characters like dots or arrows, filtering results based on partial matches or camelCase patterns; parameter info tooltips that show method signatures, parameter types, and the current position in overloads; and quick info popups that reveal full declarations or documentation for hovered symbols. For .NET languages, IntelliSense is powered by the Roslyn compiler platform, enabling deep semantic analysis and accurate suggestions. Users can customize IntelliSense behavior, such as toggling suggestion modes or disabling specific features, via Tools > Options > Text Editor > IntelliSense settings. Refactoring tools in Visual Studio integrate seamlessly with the editor to support safe code transformations without altering functionality. Common operations include renaming symbols, which updates all references across files; extracting methods, which converts selected code into a reusable function with automatic parameter handling; and implementing interfaces, which generates for required members. These tools are accessible via right-click context menus or keyboard shortcuts like Ctrl+R, R for rename, and are available for languages such as C#, , C++, and Python. Improvements to refactoring have evolved over versions, with notable enhancements including the integration of in 2022 to provide AI-assisted suggestions during refactoring workflows. For file handling, the editor supports efficient editing of large files through its 64-bit architecture in Visual Studio 2022 and later, utilizing memory-mapped loading and on-demand parsing to manage substantial codebases without excessive resource consumption. Additionally, built-in and merge tools facilitate comparing changes and resolving conflicts, with visual side-by-side views and three-way merge support for integration.

Debugging and Diagnostics

Visual Studio's debugging and diagnostics capabilities form a cornerstone of its development environment, empowering developers to examine application behavior at runtime, pinpoint defects, and optimize performance. The integrates seamlessly with the IDE, supporting interactive code inspection across various languages and platforms. These tools facilitate step-by-step execution control, real-time variable monitoring, and retrospective analysis, reducing the time required to resolve complex issues. At the core of Visual Studio's debugging toolkit is the , which enables step-through execution via commands such as Step Into (F11), (F10), and Step Out (Shift+F11), allowing developers to traverse while observing runtime changes. Breakpoints pause execution at designated lines or functions; conditional breakpoints evaluate expressions before halting, while data breakpoints trigger when a specific variable's is modified, useful for tracking unintended data alterations. Watch windows provide dynamic views of selected variables, expressions, or objects, updating their values as execution progresses, and the call stack window reveals the sequence of function calls leading to the current point, aiding in tracing execution flow. For applications blending managed (e.g., C#) and native (e.g., C++), mixed-mode permits unified inspection, with the ability to step across boundaries and view both managed and native call stacks in a single session. Diagnostic tools extend beyond basic debugging to profile application performance and behavior. The Performance Profiler includes CPU Usage for measuring computation time and hotspots, Usage for detecting leaks and allocation patterns, and GPU Usage for analyzing graphics pipeline efficiency in applications, all accessible without full attachment for non-intrusive analysis. IntelliTrace captures historical execution data, including events, call stacks, and snapshots, enabling developers to replay sessions and step backward to prior states for isolating intermittent bugs. Live Share enhances by allowing multiple users to join sessions synchronously, sharing breakpoints, stepping controls, and variable inspections over the network. Error handling features streamline issue resolution through configurable exception management and proactive analysis. Exception settings let developers specify breakpoints for all exceptions, specific types (e.g., exceptions), or only unhandled ones, with the Exception Helper window providing context like stack traces and variable states upon breaks. Roslyn-based diagnostic analyzers scan code for potential runtime errors, such as null references or leaks, offering inline suggestions and automated code fixes to prevent exceptions before execution. For post-crash investigation, Visual Studio supports analysis of crash dumps—snapshots of an application's memory at failure—enabling debugging of hung or terminated processes by inspecting threads, modules, and heap contents without needing the original environment. Advanced debugging options cater to distributed and production scenarios. Remote debugging allows attachment to processes on distant machines, including Linux containers via SSH, for troubleshooting without local reproduction. Just-In-Time (JIT) debugging automatically invokes the Visual Studio when an external application encounters an unhandled exception or crash, streamlining ad-hoc . Integration with Application Insights collects runtime telemetry, such as exceptions and performance metrics, directly within sessions via the Snapshot Debugger, which captures code snapshots on live failures for immediate correlation with .

UI and Web Designers

Visual Studio provides a suite of visual design tools tailored for building user interfaces across desktop, web, and mobile platforms, enabling developers to create layouts through drag-and-drop interactions, previews, and integrated property editing. These tools emphasize and visual feedback, reducing reliance on manual code entry for initial UI construction. For Windows-based applications, the WinForms Designer offers a drag-and-drop interface to arrange controls, configure margins, padding, and layouts, while supporting size and display adjustments in a environment. The WPF Designer utilizes XAML previews to visualize and edit declarative UI elements, allowing real-time modifications to styles and structures within the . Integration with Blend for Visual Studio enhances this by providing advanced capabilities for defining visual states, animations, and behaviors, seamlessly accessible from the main IDE. In web development, the ASP.NET Designer delivers a near-WYSIWYG view for server controls on Web Forms pages, master pages, and user controls, facilitating layout and interaction design without constant code switching. For Blazor applications, component previews are supported through Razor syntax editing with live rendering via Hot Reload, enabling iterative UI adjustments during development. CSS and HTML visual editors provide IntelliSense-assisted markup editing alongside browser previews, aiding in styling and structure refinement for responsive web pages. Mobile UI design tools include the legacy Xamarin.Forms XAML designer, which offered drag-and-drop support for cross-platform layouts before its deprecation. Introduced in 2022 with .NET , the visual editor relies on XAML Hot Reload for live previews of cross-platform UIs, allowing hand-written XAML to update in real-time across devices without a full rebuild. Common features across these designers include the Properties grid for inspecting and modifying control attributes, data binding to connect UI elements to sources effortlessly, and live previews for immediate visual feedback. Support for responsive design is embedded through layout containers and media query tools in web and mobile editors, while checks via UI Analysis and AccChecker help identify issues like contrast and navigation compliance during design.

Build, Deployment, and Testing Tools

Visual Studio employs MSBuild as its primary build engine, enabling the compilation of multi-project solutions by processing project files (.csproj, .vcxproj) and solution files (.sln) to coordinate dependencies and outputs across interconnected components. In C++ projects, .vcxproj files contain detailed build configurations, compiler and linker options, and references to source files (such as .cpp files), while .sln files organize one or more projects, manage dependencies between them, and determine the build order for the overall solution. This integration facilitates incremental builds, which rebuild only modified files and dependencies to optimize time and resources, and supports parallel compilation across multiple processor cores to accelerate the process, particularly for large-scale projects like those targeting via WSL. Compiling software with modern Visual Studio versions provides benefits such as improved code optimization leading to potentially faster execution and lower memory usage, support for the latest CPU instructions, enhanced security and stability through updated runtime libraries, and better compatibility with current and future operating systems. Additionally, Visual Studio provides native support for projects, allowing developers to configure, build, and debug cross-platform C++ applications directly within the IDE, including experimental features like modules and CMake Presets for streamlined preset management. For Android development, it integrates with to handle /Kotlin builds, enabling the creation of native apps through tools like .NET for Android, where Gradle projects can be imported and built alongside C++ components. Deployment capabilities in Visual Studio streamline the distribution of applications to various environments via the integrated Publish tool, which generates profiles for targeted destinations. For Windows desktop applications, ClickOnce deployment packages executables with prerequisites like the .NET runtime, allowing seamless installation and automatic updates from network shares or web servers without administrative privileges. Web applications can be deployed to IIS using Web Deploy, a synchronization tool that transfers files, databases, and configurations securely over HTTP/HTTPS, supporting incremental updates to minimize downtime. For cloud hosting, direct publishing to Azure App Service is available, where developers select Windows or Linux runtimes and deploy web apps, APIs, or functions with options for scaling and slot swapping. Containerization support includes building and pushing Docker images from within the IDE, integrating with Azure Container Registry or other registries to facilitate microservices and hybrid deployments. The testing framework in Visual Studio centers on the Test Explorer, which manages and executes unit tests across supported frameworks to verify code behavior and maintain quality. It natively supports MSTest for Microsoft-authored tests, as well as third-party frameworks like and xUnit.net, allowing developers to write, run, and debug tests in languages such as C# and VB.NET with real-time results and failure diagnostics. Code coverage analysis integrates with these tools to report the percentage of code exercised by tests, using to highlight untested paths and supporting customization via .runsettings files for targeted exclusions. CI/CD integration in Visual Studio bridges development with automation pipelines, primarily through Azure DevOps, where built-in wizards generate pipelines for building, testing, and deploying solutions directly from the IDE. Support for Actions allows configuration of workflows for repository-hosted projects, enabling automated triggers on commits or pull requests to run tests and deployments, often combined with Azure for hybrid scenarios. One-click publish wizards simplify initial setups by creating deployment profiles that can evolve into full pipelines, automating releases to Azure App Service or containers while integrating scans and approvals.

Version Control Integration

Visual Studio provides integrated Git support for version control. The IDE lacks built-in restore points or local history for individual files (such as .cs files), but Git integration enables developers to create timestamped restore points via commits and to restore to specific points using revert (to create a reversing commit) or reset operations. This is the officially recommended approach for reliable time-point restoration and change tracking. Alternatives like Windows Previous Versions (if enabled) or third-party extensions exist but are not primary methods.

Extensibility and Customization

Visual Studio provides a robust extensibility model that allows developers to create and distribute custom tools, integrating seamlessly with the IDE to enhance functionality for specific workflows or languages. The primary distribution platform is the Visual Studio Marketplace, which hosts thousands of extensions developed by Microsoft and the community, enabling users to discover, install, and manage add-ons directly within the IDE. These extensions are packaged in the VSIX format, a standardized .vsix file that bundles the extension's assemblies, metadata, and resources for easy installation and deployment across Visual Studio versions. The Visual Studio SDK serves as the foundational toolkit for building extensions, offering APIs to add custom commands, tool windows, menus, and other UI elements while ensuring compatibility with the IDE's architecture. Central to this extensibility is the Managed Extensibility Framework (MEF), a .NET library that facilitates component composition by allowing parts of the IDE—such as the editor—to dynamically discover and load extensions without tight coupling. Developers use MEF attributes like [Export] and [Import] to define discoverable components, enabling modular extensions that can extend core features like code analysis or project management. Users can personalize the IDE through various built-in customization options, including theme selection for dark or light modes to improve readability and reduce eye strain, configurable keyboard shortcuts to align with preferred input habits, and adjustable tool window layouts to optimize workspace efficiency. Additionally, project and item templates allow for the creation and sharing of reusable starting points for new files or solutions, streamlining development by pre-populating boilerplate code and settings. Best practices for extension development emphasize isolation through out-of-process execution models in the newer VisualStudio.Extensibility SDK, which reduces risks of crashes affecting the main IDE process by running extensions in separate app domains or external hosts. Compatibility across Visual Studio versions requires careful targeting of APIs and versioning manifests in the VSIX package to avoid breaking changes. extensions is facilitated by launching a secondary instance of Visual Studio from the development environment, allowing breakpoints and step-through execution directly within the tool being extended.

AI-Assisted Development

Visual Studio integrates to enhance developer productivity through code generation, contextual suggestions, and automated assistance in various development tasks. These AI capabilities, primarily powered by large language models, enable developers to query codebases in , receive intelligent completions, and automate repetitive processes like testing and refactoring. Key AI tools include , which functions as an AI pair programmer within the IDE, providing context-aware code completions, chat-based queries for explanations or modifications, and snippet generation based on comments or natural language prompts. IntelliCode leverages to deliver whole-line autocompletions and suggestions tailored to common coding patterns in a developer's , building on traditional IntelliSense for more predictive assistance. Additionally, integration with Amazon CodeWhisperer via the AWS Toolkit extension allows for real-time code recommendations and security scans, offering an alternative AI option for AWS-focused development. Since Visual Studio 2022 version 17.4, AI features have expanded to include automated unit test generation through , where developers can prompt the tool to create tests covering specific code paths or edge cases. Bug detection has been augmented with AI-driven profiling and diagnostics, identifying performance issues and suggesting resolutions during debugging sessions. In Visual Studio 2026, deeper AI integration introduces agent-based tools for architecture suggestions, such as evaluating against project constraints, and automated refactoring across multiple files to improve code maintainability. These AI features are implemented using models from Azure OpenAI Service, enabling enterprise-grade deployment with options for local inference to minimize latency and data transmission. Privacy controls ensure that user code is not retained or used for model training; prompts and completions are processed ephemerally, with configurable settings to filter sensitive data or disable telemetry. Adoption of these AI tools in Visual Studio has grown significantly since 2022, with usage correlating to productivity gains in controlled studies. indicates that developers using completed coding tasks 55.8% faster on average compared to those without, particularly in repository-specific and unfamiliar code scenarios. This has led to broader efficiency improvements, including reduced time on and higher among users.

User Interface Language Settings

Visual Studio supports multiple user interface languages through optional language packs, including Chinese (Simplified). To configure the IDE to display in Chinese (Simplified), first install the relevant language pack using the Visual Studio Installer, then select the language in the IDE settings. To install the Chinese (Simplified) language pack:
  1. Open the Visual Studio Installer by searching for it in the Windows Start menu or by selecting Tools > Get Tools and Features from within Visual Studio.
  2. Select the Visual Studio installation instance to modify and click Modify.
  3. Switch to the Language packs tab.
  4. Select Chinese (Simplified) (or another Chinese variant if preferred).
  5. Click Modify and follow the prompts to download and install the language pack (requires an internet connection).
  6. After installation completes, launch Visual Studio.
To apply the language change:
  1. In Visual Studio, navigate to Tools > Options > Environment > International Settings.
  2. From the dropdown menu, select Chinese (Simplified).
  3. Restart Visual Studio for the changes to take effect.
If the desired language does not appear in the dropdown menu, ensure that the corresponding language pack is installed.

Supported Languages and Frameworks

Programming Languages

Visual Studio provides native, full-featured integrated development environment (IDE) support for several core programming languages, particularly those within the .NET ecosystem, enabling developers to create, debug, and deploy applications with tailored tooling. Among these, C# has been a flagship language since the introduction of .NET, offering comprehensive IDE capabilities including project templates for console, web, and desktop applications, integrated debugging with breakpoints and variable inspection, and built-in code analyzers powered by the Roslyn compiler platform for real-time error detection and refactoring suggestions. Visual Basic .NET (VB.NET) receives similar robust support, with project templates for Windows Forms and ASP.NET applications, a dedicated debugger, and analyzers that provide IntelliSense for syntax completion and type safety checks, making it accessible for rapid prototyping in managed environments. F#, a functional-first language for .NET, includes native tooling such as project templates for data science and web services, debugging support for interactive scripting, and analyzers that highlight functional programming patterns and type inferences. For systems programming, C++ is supported through the Visual C++ toolchain, featuring project templates for native Windows, , and cross-platform applications, multi-threaded debugging, and integration with for dependency management, which simplifies library acquisition and build configuration via a . Code analyzers in C++ provide static analysis for conformance to standards like and security vulnerabilities. In web and scripting domains, JavaScript and TypeScript benefit from dedicated tools including project templates for Node.js and ASP.NET Core web apps, browser-linked debugging with source mapping, and analyzers for ECMAScript standards compliance and type checking in TypeScript. Python support is enabled via the open-source Python Tools for Visual Studio (PTVS) extension, which offers project templates for data science, web (e.g., Django, Flask), and scripting, along with an interactive REPL debugger and analyzers for linting and virtual environment management. Markup languages like HTML and CSS are handled through web designer views with live previews, IntelliSense for tags and properties, and integrated debugging for client-side rendering issues. Additional languages such as , Go, and SQL are supported primarily through extensions and specialized tools rather than native IDE integration. Rust development relies on extensions like rust-analyzer for and basic , while Go uses community extensions for and builds. SQL tooling is provided via SQL Server Object Explorer, allowing database connections, query execution, schema editing, and integration with project data sources without full language IDE features.

Frameworks and Runtimes

Visual Studio provides comprehensive support for the .NET ecosystem, enabling developers to build applications using both legacy and modern components. The .NET Framework, a Windows-specific runtime introduced in 2002, remains supported for maintaining older applications, with the latest version being 4.8.1, which serves as an in-place update for prior releases from 4.0 to 4.7.2. In contrast, the cross-platform .NET (formerly .NET Core) starting from version 5 and unified under .NET 5+ allows for development targeting Windows, , and macOS, with active support for .NET 8 (long-term support until November 2026), .NET 9 (standard term support until May 2026), and .NET 10 (long-term support until November 2028). Within this ecosystem, .NET Multi-platform App UI (MAUI) facilitates unified development for mobile and desktop applications across Android, , macOS, and Windows using a single codebase. Beyond the core .NET runtimes, Visual Studio integrates key frameworks for specialized development needs. powers cross-platform web applications, supporting features like Razor Pages and MVC for building scalable services deployable on various operating systems. Entity Framework Core, an object-relational mapper (ORM), streamlines data access in .NET applications by enabling code-first modeling and migrations compatible with multiple databases. For Windows-specific UI development, WinUI 3 provides modern controls and XAML-based interfaces through the , targeting and 11 for desktop and mobile experiences. Visual Studio extends runtime support to non-.NET environments via extensions and workloads. The Universal Windows Platform (UWP) runtime, designed for Windows Store applications, is supported with .NET Native compilation and .NET 10 compatibility for apps targeting , , HoloLens, and . To aid modernization, Visual Studio includes built-in migration tools such as the .NET Upgrade Assistant, an extension that automates project upgrades from .NET Framework to .NET 10 or later versions, performing compatibility analysis, suggestions, and API mapping to identify and resolve incompatibilities. This tool supports incremental migration strategies, allowing developers to target multi-framework projects while verifying runtime behaviors through built-in analyzers.

Editions

The editions of Visual Studio are installed and managed using the Visual Studio Installer, a modular tool that supports customization of workloads, individual components, and language packs. The installer's "Available" tab (or localized equivalent, such as "Доступно" in Russian) typically displays only the latest major version of Visual Studio. As of February 2026, this is Visual Studio 2026, released on November 11, 2025. Previous major versions (e.g., 2022 or 2019) are not listed there and require downloading specific bootstrappers from Microsoft's Visual Studio older downloads archive at https://visualstudio.microsoft.com/vs/older-downloads/ or from release history pages. This is standard behavior, as the installer focuses on the current major release and its updates or previews.

Community Edition

Visual Studio Community is the free edition of the Visual Studio (IDE), designed to provide full-featured access for individual developers, students, educators, open-source contributors, and small teams. It is available at no cost for individuals building applications, whether free or commercial, and supports unlimited usage in classroom learning environments, academic research, and open-source projects. In non-enterprise organizations—defined as those with 250 or fewer PCs or annual revenue of $1 million USD or less—up to five users can utilize the edition for general development scenarios. However, in enterprise organizations exceeding these thresholds, usage is restricted solely to open-source, academic, or classroom purposes, requiring paid editions for broader team application. The edition offers comprehensive IDE capabilities, including support for all programming languages and platforms available in Visual Studio, such as C#, C++, Python, , and frameworks like .NET, , and cross-platform mobile development with .NET . Key included features encompass integration, tools, frameworks, , and collaboration via Live Share, enabling real-time without limitations on project complexity for eligible users. The core development features, including code editing, debugging, building, Git integration, refactoring, and CodeLens, are identical to those in the Professional edition. It also provides access to Azure Dev Essentials, offering limited monthly Azure credits, free training resources like courses, and extensions from the Visual Studio Marketplace to enhance productivity for hobbyist and educational projects. Despite its robust offerings, the edition has notable limitations compared to paid versions, excluding advanced tools available in Professional such as IntelliTrace historical debugging, Code Map, Live Unit Testing, IntelliTest, Microsoft Fakes, graphics debugging, .NET memory dump analysis, remoted iOS simulator, PowerPoint storyboarding, and code review, as well as enterprise-grade features like architecture validation, live dependency analysis, and performance profiling with tier interaction mapping. Team collaboration features are basic, lacking enterprise-grade Azure DevOps integration beyond individual or small-team use, and Azure resource credits are capped at promotional levels without the expanded allocations in or Enterprise editions. These restrictions ensure it remains optimized for individual and small-scale development, steering larger organizations toward subscribed options for scalability. The edition has gained significant popularity among students, hobbyists, and open-source developers due to its no-cost accessibility and full IDE functionality, contributing to the widespread adoption of Visual Studio products by millions of users worldwide.

Professional Edition

The Visual Studio Edition serves as a mid-tier offering designed for individual developers and small teams, providing enhanced tools for efficient collaboration and productivity in commercial environments. Unlike the free Community Edition, which is limited for larger organizations, supports unrestricted commercial use without the organizational size restrictions of Community, enabling seamless development workflows for projects. Pricing for the Professional Edition follows a subscription-based model, with the standard annual plan costing approximately $1,200 per user (equivalent to $99.99 per month for the first year, renewing at $66.59 per month), or a flexible monthly option at $45 per user. This subscription includes a perpetual license for the Visual Studio IDE, access to Azure DevOps Basic for team collaboration, $50 in monthly Azure credits for development and testing, and additional benefits such as software downloads, training resources like six months of access, and two technical support incidents. Core features such as code editing, debugging, building, Git integration, refactoring, and CodeLens are identical to the Community edition. Professional extends these with advanced capabilities including IntelliTrace for historical debugging, Code Map debugger integration, .NET memory dump analysis, graphics debugging, Live Unit Testing, IntelliTest, Microsoft Fakes for unit test isolation, remoted iOS simulator for Windows, native iOS and Android UI designers, PowerPoint storyboarding, and code review tools. These additions provide greater value for teams requiring sophisticated diagnostics, testing, cross-platform mobile development enhancements, and collaboration beyond basic needs. Lightweight architecture tools like layer diagrams and validation further support modeling dependencies. Integration perks further support team-oriented development, offering full support for Enterprise to streamline repository management and pull requests directly within the IDE, alongside customized dashboards in Azure DevOps for tracking builds, tests, and progress metrics tailored to small team needs.

Enterprise Edition

Visual Studio Enterprise Edition is the premium offering designed for large-scale in enterprise environments, providing advanced tools for , , testing, and compliance that extend beyond the capabilities of the Professional Edition. The subscription is priced at approximately $6,000 per user annually for the standard plan, billed as $499.92 per user per month, with renewals at a reduced rate of $2,569 per year; monthly options are available at $250 per user, and through Open Value or Enterprise Agreements offers discounts for organizations with 5 or more users. Licensing is per user rather than per device, including a perpetual to the IDE along with access to premium development and testing software. Exclusive to this edition are advanced features such as full IntelliTrace for historical , which builds on the core debugging tools available in lower editions by enabling collection and analysis of execution traces; layering and validation through live dependency validation and layer diagrams to enforce constraints; Live for real-time feedback on unit tests during development; and the integrated feedback client for streamlined bug reporting and diagnostic data collection. For compliance, Enterprise Edition includes code clone detection to identify duplicated code blocks across solutions, helping maintain code quality and reduce maintenance costs; static code analysis tools for security vulnerability detection and adherence to coding standards; and integration with Microsoft Endpoint Configuration Manager (part of Microsoft Endpoint Manager) for centralized deployment, updates, and policy enforcement across enterprise installations. The edition supports scalability for large development teams through (ALM) extensions that facilitate collaboration, workflows, and ; custom reporting via code metrics analysis for maintainability and complexity insights; and performance diagnostics optimized for complex, multi-tier applications in organizations with extensive developer bases.

History

Early Versions (1997–2003)

Visual Studio 97, released on March 19, 1997, marked the debut of Microsoft's (IDE) suite, combining tools previously sold separately. It provided a unified shell supporting 5.0 for , Visual C++ 5.0 for systems programming, 3.0 for database applications, Visual InterDev 1.0 for building, along with Visual J++ 1.1 for development. Available in and Enterprise editions, it targeted enterprise-scale development with features like component-based reusability via (Component Object Model). Visual Studio 6.0, launched on September 2, 1998, built upon its predecessor by refining the integrated environment and adding support for emerging technologies. It incorporated Visual Basic 6.0 with enhanced controls, Visual C++ 6.0 for improved optimization, and an updated Visual J++ for better integration, including and application development. A major advancement was the overhaul of tools, offering unified breakpoints, watch windows, and tracing across languages, which streamlined troubleshooting in multi-component projects. This release, the last major version before the shift to .NET, emphasized COM interoperability but maintained separate shells for some tools, limiting full cross-language cohesion. It was offered in ($1,079 estimated retail price) and Enterprise editions, with service packs addressing stability issues by late 1998. The transition to .NET began with Visual Studio .NET 2002 (version 7.0), released on February 13, 2002, following a beta in 2001. This iteration introduced the first .NET Framework support, enabling development in C#—a new object-oriented language—and VB.NET, alongside for web applications and XML web services. It featured a fully unified IDE shell with the introduction of Solution Explorer, allowing seamless project integration across managed and unmanaged code, and included Visual J# .NET for Java migration to .NET. Priced starting at $799 for Professional, it supported building scalable, distributed applications but required or XP, dropping legacy OS compatibility. Visual Studio .NET 2003, available worldwide from April 23, 2003 (with general release on July 10), enhanced the .NET ecosystem for Framework 1.1, introducing improved mobile development tools via the .NET Compact Framework for and applications. and deployment were bolstered with better error handling and server-side controls for , while the IDE added architecture validation features for enterprise projects. Notably, it ended support for and earlier, requiring or later for installation, reflecting a focus on modern platforms. Editions included for design modeling, starting at $2,499. Early versions relied on a COM-based , which facilitated component reusability but posed challenges in extensibility and cross-language integration, as add-ins required deep access to and often conflicted across tools. Limited interoperability between unmanaged languages like C++ and emerging managed ones hindered unified workflows, driving the need for the .NET pivot.

.NET Transition (2005–2010)

Visual Studio 2005 marked a pivotal shift toward deeper integration with the .NET Framework 2.0, introducing support for generics in languages like C# 2.0 and Visual Basic .NET 8.0, which enabled more efficient and type-safe for complex data structures. This version also debuted deployment, a that simplified the distribution of Windows-based .NET applications by allowing seamless updates without administrative privileges or complex installation processes. Additionally, Visual Studio 2005 became the first edition capable of targeting 64-bit platforms, including Intel Itanium and AMD64, supporting the growing demand for in enterprise environments. Building on this foundation, Visual Studio 2008 integrated the .NET Framework 3.5, which brought Language-Integrated Query () to the forefront, allowing developers to query data sources like databases, XML, and in-memory collections using a unified, declarative syntax embedded directly in C# and code. The edition included designers for Windows Presentation Foundation (WPF) and (WCF), facilitating the creation of rich, graphical user interfaces and service-oriented applications through visual tools that streamlined XAML editing and service configuration. Service Pack 1 further enhanced web development by introducing JavaScript IntelliSense, providing real-time code completion and error detection within the IDE to improve productivity for projects. Visual Studio 2010 advanced the .NET ecosystem with full support for the .NET Framework 4.0, incorporating enhancements like dynamic language runtime for better interoperability with scripting languages and improved parallel programming libraries. A key innovation was multi-targeting, enabling developers to build and maintain applications against multiple .NET Framework versions (from 2.0 to 4.0) within the same solution, reducing the need for separate IDE installations. The Ultimate edition introduced advanced tools, including UML 2.1-compliant modeling diagrams for sequence, activity, and class visualizations, aiding in the design of large-scale enterprise systems. During this era, Visual Studio adopted WPF for significant portions of its own user interface, starting prominently in the 2010 release, which allowed for more responsive and customizable windows, such as the improved Solution Explorer and property grids, enhancing the overall developer experience. Parallel builds were optimized in Visual Studio 2010, leveraging multi-core processors to compile projects concurrently and reduce build times by up to several minutes for large solutions. However, the editions faced criticism for their substantial installer sizes—Visual Studio 2010's DVD alone spanned 2.3 GB—leading to concerns over download times and disk space requirements in bandwidth-limited environments. These releases solidified .NET as a cornerstone for enterprise development, with Visual Studio contributing to broad adoption through its alignment with and Server 2008, enabling secure and manageable applications across organizations of varying scales. By 2010, over 90% of Windows PCs worldwide had some .NET Framework version installed, reflecting robust enterprise uptake driven by tools like and WPF that addressed real-world needs for data-intensive and interconnected systems.

Modern IDE Evolution (2012–2019)

Visual Studio 2012 marked a significant evolution in the IDE's and language capabilities, adopting a monochromatic design inspired by the Metro style to reduce visual clutter and enhance focus on code. This redesign featured all-caps menus, fewer default toolbars, and improved support through detachable window rafts, aiming to streamline developer workflows. However, the stark UI drew criticism for being too minimalistic, prompting subsequent adjustments in later releases. Additionally, Visual Studio 2012 introduced full support for async/await keywords in C# 5.0 and 11, simplifying asynchronous programming by allowing developers to write non-blocking code more intuitively without manual thread management. Integration with Blend for Visual Studio was also enhanced, bundling the tool for XAML-based Windows Store app development, though it launched in a separate window rather than fully embedded. Building on this foundation, Visual Studio 2013 addressed UI feedback by reintroducing color to over 400 icons for better differentiation and , while maintaining a cleaner overall aesthetic. Native integration became a core feature, enabling seamless source control operations directly within the IDE, including branching, merging, and history visualization without external tools. Support for was added starting with Update 2, providing IntelliSense, debugging, and compilation for the superset of , facilitating large-scale web application development. In late 2014, launched the first free edition of Visual Studio 2013, targeting individual developers, open-source projects, and small teams with up to five users, offering near-parity with features like workflows and compilers for managed languages. Visual Studio 2015 advanced compiler technology by making the open-source Roslyn platform the default for C# and , enabling richer code analysis, refactoring, and extensibility through APIs that allowed custom tools to inspect and transform code during compilation. A preview of .NET Core tools was integrated, supporting cross-platform development for server-side applications with modular runtime components. Code maps were introduced as a visualization tool in the Architecture category, generating dependency graphs and call hierarchies to help developers understand complex codebases and identify architectural issues. The 2017 release expanded cross-platform capabilities with comprehensive .NET Core tooling, allowing developers to build, debug, and deploy applications targeting Windows, macOS, and from within the Windows-based IDE. Remote debugging for .NET Core processes on via SSH was enabled, bridging the gap for server and workloads without leaving the familiar environment. To address installation bloat, Visual Studio 2017 adopted a workload-based installer that permitted on-demand component selection, reducing the base download to under 1 GB and enabling modular updates for specific languages or frameworks. Visual Studio 2019 further matured collaboration and productivity features, introducing Live Share for real-time co-editing, debugging, and terminal sharing across teams, with secure guest access independent of the host's project state. The merge conflict resolution was upgraded to a side-by-side, two-way editor (in addition to three-way views), allowing inline edits and quicker resolutions during pulls or merges. Performance optimizations targeted large repositories, including faster solution loading, operations like history navigation, and IntelliSense responsiveness, benefiting teams working with massive codebases such as those exceeding 1 million lines. Throughout this period, Visual Studio shifted toward lighter, more flexible installations via modular workloads, minimizing disk usage and enabling rapid onboarding for diverse development scenarios. Microsoft also increased open-source engagement by hosting components like Roslyn on GitHub, fostering community contributions to compiler enhancements and extensions that influenced core IDE features. These changes positioned Visual Studio as a versatile tool for modern, distributed development practices.

Recent Releases (2022–2026 Preview)

Visual Studio 2022, released in version 17.0 on November 8, 2021, introduced support for .NET 6, enabling developers to build and debug applications with enhanced performance and cross-platform capabilities. A key innovation was Hot Reload, allowing real-time code and UI changes without restarting the application, initially for .NET and C++ projects, and later expanded to and .NET MAUI in version 17.3 (August 2022), where XAML Hot Reload and .NET Hot Reload facilitated faster iteration on multi-platform apps. The IDE also transitioned to a full 64-bit architecture, improving stability and handling of large solutions. Subsequent updates through 2025, culminating in version 17.14 (October 2025), added support for .NET 7 and beyond, along with integrations like for AI-assisted coding, which provides context-aware completions and chat-based assistance. Workspace enhancements included improved handling and previews of AI toolkits for productivity, such as partial code acceptance and model support for faster development workflows. Visual Studio 2026 entered its Insiders preview on September 9, 2025, emphasizing deeper AI integration through features like Copilot Workspace, which offers end-to-end task handling, code explanations, and performance suggestions. The update features a refreshed UI with Fluent Design principles, including 11 new tinted themes and streamlined settings for a more modern experience. Alignment with .NET 10 is built-in, supporting its release candidate from the same date, while builds like 11104.47 (October 2025) deliver performance gains, such as up to 30% faster startup times and optimized navigation. Visual Studio 2026 was released to general availability on November 11, 2025, coinciding with the full release of .NET 10, with a focus on enhanced security controls for enterprise environments, including AI usage boundaries and vulnerability patches. Visual Studio 2022 achieved widespread adoption, ranking as the second most used IDE overall at 16% in the 2025 Stack Overflow Developer Survey, with particularly high usage among .NET developers.

Visual Studio Code

Visual Studio Code, often abbreviated as VS Code, is a free and open-source code editor developed by and first announced on April 29, 2015, at the Build conference, with its initial stable release (version 1.0) following in April 2016. Built on the framework, which combines and to enable cross-platform desktop applications using web technologies, VS Code runs natively on Windows, macOS, and , providing a lightweight alternative to heavier integrated development environments (IDEs). In contrast to the full Visual Studio IDE, which offers comprehensive built-in tools for application development including visual designers and advanced debugging for specific languages like C++ and .NET, VS Code functions primarily as a streamlined focused on rapid code editing and iteration. It omits many of Visual Studio's out-of-the-box IDE features, such as project templates and graphical UI builders, instead prioritizing performance and minimal resource usage, making it especially suitable for web developers working with , , and CSS. This design choice allows for quick startup times and efficient handling of large codebases without the overhead of a complete IDE. The full Visual Studio IDE is Windows-only and does not run reliably under Wine on Linux. Specifically, Visual Studio 2013 is not compatible with Wine on Linux; while installation may be possible in some cases, the IDE generally crashes, fails to load projects, or exhibits major functionality issues due to missing Windows-specific dependencies and APIs that Wine does not fully support for such complex applications. As a result, Visual Studio Code serves as the recommended cross-platform alternative for Linux developers seeking a Microsoft-supported development environment without resorting to a Windows virtual machine. Key features of VS Code include an integrated terminal for running command-line tools directly within the editor, built-in Git support for version control operations like committing and branching, and the ability to install extensions for additional functionality, such as Live Server for previewing web pages with automatic reloading. For .NET development, support is provided through the official C# extension, which enables IntelliSense, debugging, and project management via the OmniSharp language server. VS Code's extensibility is powered by the Visual Studio Marketplace, which hosts over 60,000 extensions as of 2025, allowing users to customize it for virtually any programming language or workflow. VS Code has achieved widespread adoption, with surveys indicating over 70% of developers using it as their primary editor in , reflecting its versatility and community-driven enhancements. While it does not replace the full capabilities of Visual Studio for complex enterprise projects, it serves as a complementary tool, often used alongside it for lighter tasks or cross-platform collaboration.

Azure DevOps and Team Services

Azure DevOps is a cloud-based platform that evolved from Visual Studio Team Services (VSTS), rebranded and launched by in September 2018 to provide an integrated set of development tools for teams. This rebranding aimed to broaden its appeal beyond Visual Studio users, emphasizing practices like and delivery (CI/CD) while maintaining for existing VSTS projects, which were automatically upgraded. The platform comprises five core services designed for end-to-end software development collaboration. Azure Boards enables planning and tracking work through customizable Kanban boards, backlogs, sprints, and dashboards to manage user stories, tasks, and bugs across teams. Azure Repos provides unlimited private Git repositories or Team Foundation Version Control (TFVC) for source code management, including branch policies and pull request reviews to facilitate secure code sharing. Azure Pipelines supports automated CI/CD workflows for building, testing, and deploying applications across any language, platform, or cloud, with features like multi-stage pipelines and hosted agents. Azure Test Plans offers tools for manual, exploratory, and automated testing, including test case management, suites, and result tracking integrated with builds. Azure Artifacts allows hosting and sharing packages such as NuGet or npm, with version control and direct integration into pipelines for dependency management. Integration with Visual Studio is seamless through the built-in Team Explorer tool, which connects directly to Azure DevOps for source control operations like cloning repositories and managing pull requests. Developers can link work items from Visual Studio to code changes, enabling traceability between tasks in Azure Boards and commits or builds in Azure Repos and Pipelines. This supports native publishing of applications from Visual Studio to Azure Pipelines for automated deployment workflows, reducing manual steps in team collaboration. Key features include support for small teams with unlimited private repositories at no additional cost under the free tier, promoting scalable without infrastructure management. Azure DevOps incorporates AI-powered insights through integrations like , which provides code suggestions, automated testing assistance, and workflow optimizations such as pull request summaries to enhance and detect issues early in the development cycle. Pricing is structured to accommodate various team sizes, offering the full suite free for the first five users, with additional users at $6 per month; it scales to enterprise levels with pay-as-you-go options for pipelines and artifacts usage beyond free limits like 2 GiB storage. In 2025, updates introduced enhanced GitHub Copilot integration for pipelines, including the Azure DevOps MCP Server in public preview by mid-year, allowing AI agents to securely access and automate pipeline configurations, work items, and builds directly from tools like Visual Studio Code. Further enhancements planned for Q4 2025 will enable Copilot to support work item creation and pipeline orchestration, streamlining AI-assisted DevOps processes.

Other Specialized Tools

Visual Studio LightSwitch was a specialized development tool introduced with Visual Studio 2010 in July 2011, designed to enable rapid creation of data-centric business applications through a low-code approach that emphasized and integration with data sources like SQL Server and . It allowed developers and non-developers to build line-of-business applications with minimal custom code, focusing on screens, entities, and queries while automatically generating user interfaces and data access layers. LightSwitch supported deployment to the desktop via Silverlight or to the web via , and it included extensibility for custom controls and business logic in Visual Basic or C#. Development of LightSwitch ceased after its inclusion in Visual Studio 2015, with announcing in 2016 that no further versions would be produced. recommended migrating to Power Apps, a successor service launched in 2016 that offers similar rapid app development capabilities integrated with and Dynamics 365, providing broader scalability and no-code options without requiring Visual Studio. The tool's support aligned with Visual Studio 2015, with mainstream support ending on October 13, 2020, after which LightSwitch received only security updates until full end-of-support on October 14, 2025. Visual Studio Lab Management, introduced in Visual Studio 2010 Team Foundation Server (TFS), was a component for creating and managing virtualized test environments to support and testing workflows. It integrated with System Center Virtual Machine Manager (SCVMM) to provision virtual machines, configure lab environments, and automate test lab snapshots for , enabling teams to isolate builds and deployments in TFS build processes. By 2015, began evolving Lab Management toward cloud integration, incorporating Azure resources for hybrid lab setups to address scalability limitations of on-premises virtualization. The tool's capabilities were fully integrated into Azure DevOps by 2019, with features like virtual lab provisioning migrating to Azure DevTest Labs and Azure Pipelines for build and release management, allowing teams to use for lab without dedicated TFS hardware. This transition eliminated standalone Lab Management as a distinct tool, embedding its functionality into Azure DevOps Services and Server to support modern DevOps practices like containerized testing and multi-cloud environments. The Visual Studio Team System Profiler, launched with Visual Studio 2005 Team System, was an early performance analysis toolset for diagnosing CPU, memory, and thread contention issues in managed and native applications. It provided sampling and modes to collect call stacks, allocation data, and concurrency metrics during application execution, integrated directly with TFS for team-based profiling workflows. Over subsequent releases, such as Visual Studio 2008 and 2010, the profiler expanded to support multithreading analysis and .NET Framework specifics like garbage collection profiling. This legacy tool evolved into the modern Visual Studio Profiler available in the Enterprise edition, with core features like CPU Usage, Memory Usage, and .NET Async tools building on its foundations but adding AI-assisted insights, GPU profiling, and container support in versions from Visual Studio 2019 onward. The transition emphasized non-intrusive sampling for production-like scenarios, retaining for legacy Team System users while incorporating cross-platform diagnostics. Visual Studio for Mac, initially released in 2016 as a rebranded and enhanced version of Xamarin Studio following Microsoft's acquisition of Xamarin in 2016, provided an IDE tailored for .NET development on macOS, supporting C#, F#, and Xamarin for cross-platform mobile and desktop apps. It included integrated debugging, NuGet support, and Git tools, evolving through versions like 2017 and 2019 to add Blazor and MAUI project templates. However, Microsoft announced its retirement in August 2023, with support ending on August 31, 2024, under the Modern Lifecycle Policy, citing a strategic focus on unifying development experiences. Post-retirement, directs users to with .NET extensions for macOS-based .NET development, which offers lighter resource usage and broader extensibility without the full IDE overhead, while maintaining compatibility for existing projects via SDK-style migrations. The tool's lifecycle influenced cross-platform tooling by highlighting the need for lightweight, extension-driven IDEs in diverse ecosystems. Application Lifecycle Management (ALM) tools in Visual Studio originated with Visual Studio Team System in 2005, encompassing , work item tracking, , and testing integrated via TFS to manage the full lifecycle. These evolved through Visual Studio 2010 and 2012, adding agile planning and , before rebranding TFS as Visual Studio Team Services (VSTS) in 2015 and fully transitioning to Azure DevOps in 2018. Azure DevOps now serves as the comprehensive ALM platform, incorporating repos, pipelines, boards, artifacts, and test plans with cloud-native scalability, while on-premises options persist as . This evolution shifted from server-centric models to SaaS delivery, enabling seamless integration with , Azure services, and third-party tools for end-to-end . These specialized tools, though largely discontinued, have left a lasting legacy by shaping modern low-code platforms like Power Apps and cloud testing infrastructures in Azure DevOps, as well as influencing performance diagnostics and cross-platform development paradigms in current Visual Studio editions.

References

Add your contribution
Related Hubs
User Avatar
No comments yet.