Software:Visual Studio

From HandWiki
Short description: Code editor and IDE
Visual Studio
Visual Studio Icon 2022.svg
Visual Studio 2013 EN.png
Screenshot of Visual Studio 2013, editing the source code of a C++ program
Developer(s)Microsoft
Written in[1]
Operating system
Available in13 languages
List of languages
Chinese, Czech, English, French, German, Italian, Japanese, Korean, Polish, Portuguese (Brazil), Russian, Spanish and Turkish[3]
TypeIntegrated development environment
LicenseFreemium[4]
Websitevisualstudio.microsoft.com

Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platforms such as Windows API, Windows Forms, Windows Presentation Foundation, Windows 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,[5] C++, C++/CLI, Visual Basic .NET, C#, F#,[6] JavaScript, TypeScript, XML, XSLT, HTML, and CSS. Support for other languages such as Python,[7] Ruby, Node.js, and M among others is available via plug-ins. Java (and J#) were supported in the past.

The most basic edition of Visual Studio, the Community edition, is available free of charge. The slogan for Visual Studio Community edition is "Free, fully-featured IDE for students, open-source and individual developers". (As of January 2023), Visual Studio 2022 is a current production-ready version. Visual Studio 2013, 2015 and 2017 are on Extended Support, while 2019 is on Mainstream Support.[8]

Architecture

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.[9] 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.[10] However, MPF does not provide all the functionality exposed by the Visual Studio COM interfaces.[11] 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.[12] 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.[12] 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.[12] 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.[13] For managed code, the MPF includes wrappers for writing managed language services.[14]

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.[15] 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.[16][17] 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.[17]

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.[18]

Features

Code editor

Visual Studio includes a code editor that supports syntax highlighting and code completion using IntelliSense for variables, functions, methods, loops, and LINQ queries.[19] IntelliSense is supported for the included languages, as well as for XML, Cascading Style Sheets, and JavaScript when developing web sites and web applications.[20][21] 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.[19] 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.[22] The code editor also includes a multi-item clipboard and a task list.[22] 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

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.[23] 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.[24] 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).[25] 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.[26] 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.[26] 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.[27]

Designer

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.[28] 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,[29] 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[30] and ASP.NET Dynamic Data project available from Microsoft.[31]
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

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.[32][33]
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.[34]
Dotfuscator Community Edition
Visual Studio includes a free 'light' version of Dotfuscator[35]
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

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

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

Extensibility

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.[11] 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.[11] 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.[11] 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.[18] 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.[37]

Supported products

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.[38] 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,[39] 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.[40]
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.[41]
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.[42][43] 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.[44]

Previous products

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,[45] 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.[46]
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.[47][48][49] 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[50] 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

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

Community

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 United States dollar in annual revenue, per Microsoft).[52] 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.[52][53] Visual Studio Community is oriented towards individual developers and small teams.[54][55]

Professional

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.)[56] 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

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

The first version of Visual Studio was Visual Studio 97.[57] 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 ends Supported
.NET Framework
(no add-on)
Supported .NET
(formerly .NET Core)
(no add-on)
Visual Studio 97 Boston[58] March 19, 1997[59][60][61] 5.0 Service Pack 3 1997 June 30, 2003[62][63] N/A N/A
Visual Studio 6.0 Aspen[64] September 2, 1998[65][66] 6.0 Service Pack 6[67] 2004 September 30, 2005[68][69] N/A N/A
Visual Studio .NET (2002) Rainier[70] February 13, 2002[71] 7.0 Service Pack 1[72] 2005 July 14, 2009[73] 1.0 N/A
Visual Studio .NET 2003 Everett[74] April 24, 2003[75] 7.1 Service Pack 1[76] 2006 October 8, 2013[77] 1.1 N/A
Visual Studio 2005 Whidbey[78] November 7, 2005[79][80] 8.0 Service Pack 1[81] 2006 April 12, 2016[82] 2.0 N/A
Visual Studio 2008 Orcas[83] November 19, 2007[84][85] 9.0 Service Pack 1[86] 2008 April 10, 2018[87] 2.0, 3.0, 3.5 N/A
Visual Studio 2010 Dev10[88] April 12, 2010[89][90][91] 10.0 Service Pack 1[92][93] 2011 July 14, 2020[94] 2.0–4.0 N/A
Visual Studio 2012 Dev11 September 12, 2012[95][96][97] 11.0 Update 5[98] 2015 January 10, 2023[99] 2.0–4.5 N/A
Visual Studio 2013 Dev12 October 17, 2013[100][101] 12.0 Update 5[102] 2015 April 9, 2024[99] 2.0–4.5.1 N/A
Visual Studio 2015 Dev14 July 20, 2015[102][103] 14.0 Update 3[104] 2016 October 14, 2025[99] 2.0–4.6.1 1.0
Visual Studio 2017 Dev15 March 7, 2017[105] 15.0 15.9.58[106] 2023 April 13, 2027[99] 3.5–4.7.2 1.0, 1.1, 2.0, 2.1
Visual Studio 2019 Dev16 April 2, 2019[107] 16.0 16.11.33[108][109] January 9, 2024 April 10, 2029[110] 3.5–4.8 2.1, 2.2, 3.0, 3.1, 5.0[111]
Visual Studio 2022 Dev17 November 8, 2021[112] 17.0 17.8.5[113] January 17, 2024 January 13, 2032[114] 3.5, 4.6–4.8.1 2.1, 3.1, 5.0–8.0[115][116]

97

Microsoft first released Visual Studio (codenamed Boston,[58] for the city of the same name, thus beginning the VS codenames related to places)[58] 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 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.[117]

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

6.0 (1998)

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 run on the Windows 9x platform.[118] 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++,[119][120] 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.[121] 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.[18]

.NET 2002

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.[122] The installer enforces this requirement, and is the last version to support Windows NT 4.0 SP6a.

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.[123]

.NET 2003

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.[124] Visual Studio .NET 2003 drops support for Windows NT 4.0, and is the last version to support Windows 2000 versions below SP3 and Windows XP before SP2.

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.[125]

2005

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 is the last version to run on Windows 2000 and also the last version able to target Windows 98, Windows Me and Windows Server 2003 RTM for C++ applications.[126][127]

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

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.[130] 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++.[131] 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).[132] 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.[133] 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

Visual Studio 2008,[134] and Visual Studio Team System 2008[135][136] 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.[83] Microsoft released Service Pack 1 for Visual Studio 2008 on August 11, 2008.[137] The internal version number of Visual Studio 2008 is version 9.0 while the file format version is 10.0. Visual Studio 2008 is the last version able to target Windows XP SP2, Windows Server 2003 SP1 and Windows Vista RTM for C++ applications.[138]

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).[139] 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.[140] 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.[141][142]

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.[143] 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.[144]

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.[145] The threads can directly be named and flagged for easier identification from that window itself.[146] 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.[146][147] 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.[148] (As of 2010) a limited subset of the BCL source is available, with more library support planned for later.

2010

On April 12, 2010, Microsoft released Visual Studio 2010, codenamed Dev10,[88] and .NET Framework 4.[149][150] It is the last version to support Windows XP SP3, Windows Server 2003 SP2, Windows Vista SP1, Windows Server 2008 below SP2, 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."[151] The new IDE better supports multiple document windows and floating tool windows,[151] 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.[152]

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

Visual Studio 2010 comes with .NET Framework 4 and supports developing applications targeting Windows 7.[151] It supports IBM Db2 and Oracle databases, in addition to Microsoft SQL Server.[151] It has integrated support for developing Microsoft Silverlight applications, including an interactive designer.[151] 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.[154] Tools for profiling parallel applications can be used for visualization of thread wait-times and thread migrations across processor cores.[155] Intel and Microsoft have jointly pledged support for a new Concurrency Runtime in Visual Studio 2010[156] and Intel has launched parallelism support in Parallel Studio as an add-on for Visual Studio.[157]

The Visual Studio 2010 code editor now highlights references; whenever a symbol is selected, all other usages of the symbol are highlighted.[158] 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.[158] 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.[158] 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.[158] Current versions of Visual Studio have a known bug which makes IntelliSense unusable for projects using pure C (not C++).[159]

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,[160] but can be added back using a download from Microsoft.[161]

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.[162]

Ultimate 2010

Visual Studio Ultimate 2010 replaces Visual Studio 2008 Team Suite.[163] It includes new modeling tools,[164] such as the Architecture Explorer, which graphically displays projects and classes and the relationships between them.[165][166] It supports UML activity diagram, component diagram, (logical) class diagram, sequence diagram, and use case diagram.[166] 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.[167] 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.[168] 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.[169] 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.[170]

2012

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.[171]

Unlike prior versions, Visual Studio 2012 cannot record and play macros and the macro editor has been removed.[172]

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

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.[174] 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.[175] 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.[176] "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).[177]

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:[178]

  • Semantic colorization: Improved syntax coloring, various user-defined or default colors for C++ syntax such as macros, enumerations, typenames and functions.[178]
  • Reference highlighting: Selection of a symbol highlights all of the references to that symbol within scope.[178]
  • 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.[178]
  • 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).[178]
  • Member list filtering: IntelliSense uses fuzzy logic to determine which functions/variables/types to display in the list.[178]
  • 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.[178]

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

Interface backlash

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.[180][181]

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.[182] 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.[183] Some speculated that the root cause of the redesign was to incorporate the simplistic look and feel of Metro programs.[184] However, there exists a Windows Registry option to allow users to disable the all-caps interface.[185]

2013

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

The final release of Visual Studio 2013 became available for download on October 17, 2013, along with .NET 4.5.1.[188] Visual Studio 2013 officially launched on November 13, 2013, at a virtual launch event keynoted by S. Somasegar and hosted on events.visualstudio.com.[189] "Visual Studio 2013 Update 1" (Visual Studio 2013.1) was released on January 20, 2014.[190] Visual Studio 2013.1 is a targeted update that addresses some key areas of customer feedback.[191] "Visual Studio 2013 Update 2" (Visual Studio 2013.2) was released on May 12, 2014.[192] 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.[193] "Visual Studio 2013 Update 4" (Visual Studio 2013.4) was released on November 12, 2014.[194] "Visual Studio 2013 Update 5" (Visual Studio 2013.5) was released on July 20, 2015.[195]

2015

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

Visual Studio 2015 RTM was released on July 20, 2015.[195] Visual Studio 2015 Update 1 was released on November 30, 2015.[195] Visual Studio 2015 Update 2 was released on March 30, 2016.[195] Visual Studio 2015 Update 3 was released on June 27, 2016.[195] Visual Studio 2015 is the last version to support Windows Vista SP2, Windows Server 2008 SP2 and Windows 8.

2017

Microsoft Visual Studio 2017 Logo
Microsoft Visual Studio 2017 logo

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

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.[207]

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

On March 7, 2017, Visual Studio 2017 was released for general availability.[209]

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

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.[210]

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

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

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.[38]

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

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).[209] 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.[214]

2019

Visual Studio 2019 Icon
Visual Studio 2019 icon

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

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

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

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

On February 27, 2019, Visual Studio 2019 RC was released.[219]

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

2022

On April 19, 2021, Microsoft announced Visual Studio 2022 (version 17).[220][221] 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.[222]

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

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

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

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

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

Related products

Azure DevOps Services

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.[228][229] 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".[230] During the Connect(); 2015 developer event on November 18, 2015, Microsoft announced that the service was rebranded as "Visual Studio Team Services (VSTS)".[231] On September 10, 2018, Microsoft announced another rebranding of the service, this time to "Azure DevOps Services".[44]

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.[232]

Visual Studio Application Lifecycle Management

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).[233] 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.[234]

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[164][235] Visual Studio ALM with the Visual Studio 2010 (codenamed 'Rosario') release.[236]

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

Visual Studio Lab Management

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.[238]

Visual Studio LightSwitch

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,[239] or as a SharePoint 2013 app;[240] the logic and data-access tier is built on WCF Data Services and exposed as an OData feed hosted[241] 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.[242]

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

The first version of Visual Studio LightSwitch, released July 26, 2011,[244] 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.[245] 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.[246]

Visual Studio Code

Main page: Software:Visual Studio Code

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

Visual Studio Team System Profiler

Main page: Software:VSTS Profiler

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.[250] It analyzes the code and prepares a report that includes CPU sampling, instrumentation, .NET memory allocation and resource contention.

See also

References

  1. Copsey, Reed Jr. (December 13, 2011). "Which language is Visual Studio developed in?" (in en-US). https://social.msdn.microsoft.com/Forums/en-US/a109279a-8fc0-4f4c-9887-41a73a7ab679/which-language-is-visual-studio-developed-in?forum=vseditor. 
  2. "Visual Studio 2022 Product Family System Requirements" (in en-US). https://docs.microsoft.com/en-us/visualstudio/releases/2022/system-requirements. 
  3. "Microsoft Visual Studio 2015 Language Pack". Microsoft. https://www.microsoft.com/en-us/download/details.aspx?id=48157. 
  4. "Visual Studio Downloads" (in en-US). Visual Studio. Microsoft. https://www.visualstudio.com/downloads/. 
  5. Brenner, Pat (July 19, 2013). "C99 library support in Visual Studio 2013" (in en-US). Microsoft. https://devblogs.microsoft.com/cppblog/c99-library-support-in-visual-studio-2013/. 
  6. "F# at Microsoft Research". https://www.microsoft.com/en-us/research/project/f-at-microsoft-research/. 
  7. "Best Python IDE For Python Programming". January 13, 2017. http://www.pythonicquest.com/article/best-python-ide/. 
  8. "Visual Studio Product Lifecycle and Servicing" (in en-US). October 26, 2021. https://docs.microsoft.com/en-us/visualstudio/productinfo/vs-servicing. 
  9. "Visual Studio Development Environment Model" (in en-US). https://msdn.microsoft.com/en-us/library/bb165114(VS.80).aspx. 
  10. "VSPackages and Managed Package Framework (MPF)". https://msdn.microsoft.com/en-us/library/bb166554(VS.80).aspx. 
  11. 11.0 11.1 11.2 11.3 Mehta, Vijay. "Extending Visual Studio 2005". CodeGuru. http://www.codeguru.com/csharp/.net/net_vs_addins/visualstudioadd-ins/article.php/c11835/. 
  12. 12.0 12.1 12.2 "Language Service Essentials". MSDN. Microsoft. https://msdn.microsoft.com/en-us/library/bb166391(VS.80).aspx. 
  13. "Babel Package Overview". MSDN. Microsoft. https://msdn.microsoft.com/en-us/library/bb165670(VS.80).aspx. 
  14. "Managed Language Services overview". MSDN. Microsoft. https://msdn.microsoft.com/en-us/library/bb166360(VS.80).aspx. 
  15. "Source Control Integration Essentials" (in en-US). https://msdn.microsoft.com/en-us/library/bb165370.aspx. 
  16. "Source Control Plug-ins" (in en-US). https://msdn.microsoft.com/en-us/library/bb166170.aspx. 
  17. 17.0 17.1 Constantin, Alin. "Microsoft Source Code Control Interface". http://alinconstantin.dtdns.net/webdocs/scc/MSSCCI.htm. 
  18. 18.0 18.1 18.2 18.3 "Visual Studio Extensibility". http://www.code-magazine.com/focus/vsx/. 
  19. 19.0 19.1 Guthrie, Scott (July 28, 2007). "Nice VS 2008 Code Editing Improvements". http://weblogs.asp.net/scottgu/archive/2007/07/28/nice-vs-2008-code-editing-improvements.aspx. 
  20. Guthrie, Scott (June 22, 2007). "VS 2008 JavaScript IntelliSense". http://weblogs.asp.net/scottgu/archive/2007/06/21/vs-2008-javascript-intellisense.aspx. 
  21. Guthrie, Scott (July 25, 2007). "VS 2008 Web Designer and CSS Support". http://weblogs.asp.net/scottgu/archive/2007/07/25/vs-2008-web-designer-and-css-support.aspx. 
  22. 22.0 22.1 "Visual Studio .NET - Top 10 Code Editor Tips and Tricks" (in en-US). http://msdn.microsoft.com/msdntv/transcripts/20030327VSNETABTranscript.aspx. 
  23. "Attaching to Running Processes". MSDN. https://msdn.microsoft.com/en-us/library/3s68z0b3(VS.80).aspx. 
  24. "Dumps". MSDN. https://msdn.microsoft.com/en-us/library/d5zhxt22(VS.80).aspx. 
  25. "Breakpoint Overview". https://msdn.microsoft.com/en-us/library/5557y8b4(VS.80).aspx. 
  26. 26.0 26.1 "Code Stepping Overview". https://msdn.microsoft.com/en-us/library/ek13f001(VS.80).aspx. 
  27. "Debugging at Design Time" (in en-US). https://msdn.microsoft.com/en-us/library/83hd8f1e(VS.80).aspx. 
  28. "Binding Controls to Data in Visual Studio". Msdn.microsoft.com. https://msdn.microsoft.com/en-us/library/ms171923.aspx. 
  29. "MSDN TV: Introducing "Cider" - The Visual Studio Designer for WPF ("Avalon")". MSDN TV. http://www.microsoft.com/downloads/details.aspx?FamilyId=950D1EEC-5D4F-4A15-8250-D26E24B80A5D. 
  30. "MVC : The Official Microsoft ASP.NET Site". Asp.net. May 10, 2013. http://www.asp.net/mvc/. 
  31. "Dynamic Data Content Map". Asp.net. http://www.asp.net/DynamicData/. 
  32. "Team Explorer 2005 (.img file)". Microsoft. http://download.microsoft.com/download/2/a/d/2ad44873-8ccb-4a1b-9c0d-23224b3ba34c/VSTFClient.img. 
  33. "Visual Studio Team System 2008 Team Explorer". Microsoft. http://www.microsoft.com/downloads/details.aspx?familyid=0ed12659-3d41-4420-bbb0-a46e51bfca86&displaylang=en. 
  34. "How to use the Server Explorer in Visual Studio .NET and Visual Studio 2005". Microsoft. http://support.microsoft.com/kb/316649. 
  35. "Microsoft Visual Studio 2017 documentation: PreEmptive Protection - Dotfuscator .NET Obfuscator and Code Hardening Tool". Microsoft.com. March 15, 2017. https://docs.microsoft.com/en-us/visualstudio/ide/dotfuscator/. 
  36. 36.0 36.1 "Code Testing Tools & Services | Visual Studio" (in en-US). https://visualstudio.microsoft.com/vs/features/testing-tools/. 
  37. Cangialosi, Anthony (June 6, 2008). "The Visual Studio Gallery gets a little more community friendly". Microsoft. http://blogs.msdn.com/b/acangialosi/archive/2008/06/06/the-visual-studio-gallery-gets-a-little-more-community-friendly.aspx. 
  38. 38.0 38.1 "Announcing: MSVC Conforms to the C++ Standard". https://devblogs.microsoft.com/cppblog/announcing-msvc-conforms-to-the-c-standard/. 
  39. "Compiler Intrinsics". Microsoft Docs. https://docs.microsoft.com/en-us/cpp/intrinsics/compiler-intrinsics. 
  40. "OpenMP in Visual C++ (Visual Studio 2005)". MSDN. Microsoft. 2005. https://docs.microsoft.com/en-us/cpp/parallel/openmp/openmp-in-visual-cpp. 
  41. "Visual C# (MSDN)". MSDN. https://msdn.microsoft.com/en-us/library/kx37x362.aspx. 
  42. "Make Your Components Really RAD with Visual Studio .NET Property Browser". October 2010. https://msdn.microsoft.com/en-us/library/aa302334.aspx. 
  43. "What's New in Visual Basic and Visual C#". October 2010. https://msdn.microsoft.com/en-us/library/aa984213%28VS.71%29.aspx. 
  44. 44.0 44.1 Cool, Jamie (September 10, 2018). "Introducing Azure DevOps". https://azure.microsoft.com/en-us/blog/introducing-azure-devops/. 
  45. "Visual FoxPro Home, under Visual FoxPro 9.0 Overview". MSDN. http://msdn.microsoft.com/en-us/vfoxpro/bb190225.aspx. 
  46. "A Message to the Community". MSDN. http://msdn.microsoft.com/en-us/vfoxpro/bb308952.aspx. 
  47. De, Alan. "Visual SourceSafe: Microsoft's Source Destruction System". Highprogrammer.com. http://www.highprogrammer.com/alan/windev/sourcesafe.html. 
  48. "INFO: Required Network Rights for the SourceSafe Directories". Support.microsoft.com. February 24, 2005. http://support.microsoft.com/kb/q131022/. 
  49. "Microsoft Visual SourceSafe Best Practices". Msdn.microsoft.com. May 30, 2007. https://msdn.microsoft.com/en-us/library/bb509342.aspx. 
  50. "Buy Microsoft Visual SourceSafe 6 (324-00269) :: eCostSoftware.com - UK Software Supplier". eCostSoftware.com. http://www.ecostsoftware.com/microsoft/microsoft-visual-sourcesafe-6_p2051. 
  51. "Compare Visual Studio 2019 Editions". Microsoft. https://www.visualstudio.com/vs/compare/. 
  52. 52.0 52.1 "Visual Studio 2017 licensing white paper". November 2017. https://visualstudio.microsoft.com/wp-content/uploads/2017/11/Visual-Studio-2017-Licensing-Whitepaper-November-2017.pdf. 
  53. "Compare Visual Studio Product Offerings | Visual Studio". https://visualstudio.microsoft.com/vs/compare/. 
  54. "Microsoft debuts Visual Studio 2015 and .NET 2015 previews, free Visual Studio Community 2013". November 12, 2014. https://venturebeat.com/2014/11/12/microsoft-debuts-visual-studio-2015-and-net-2015-previews-free-visual-studio-community-2013/. 
  55. "Microsoft Launches Free, Unrestricted Version Of Visual Studio For Small Teams". TechCrunch. November 12, 2014. https://techcrunch.com/2014/11/12/microsoft-makes-visual-studio-free-for-small-teams/. 
  56. "VS 2010 Licensing Changes". Microsoft. October 19, 2009. http://blogs.msdn.com/b/bharry/archive/2009/10/19/vs-2010-licensing-changes.aspx. 
  57. Otey, Michael (April 30, 1997). "Visual Studio 97". Windows IT Pro. http://www.itprotoday.com/microsoft-visual-studio/visual-studio-97. 
  58. 58.0 58.1 58.2 Paul Thurrott. "What I'm doing in Redmond". http://windowsphonesecrets.com/2010/05/18/what-im-doing-in-redmond/. 
  59. "Microsoft Announces Visual Studio 97, A Comprehensive Suite of Microsoft Visual Development Tools". Microsoft. January 28, 1997. https://news.microsoft.com/1997/01/28/microsoft-announces-visual-studio-97-a-comprehensive-suite-of-microsoft-visual-development-tools/. 
  60. "Microsoft Unveils Enterprise Edition of New Visual Studio 97". Microsoft. February 18, 1997. https://news.microsoft.com/1997/02/18/microsoft-unveils-enterprise-edition-of-new-visual-studio-97/. 
  61. "More Than 45,000 Developers See Public Unveiling Of New Microsoft Visual Studio 97 at Developer Days Events Worldwide". Microsoft. March 18, 1997. https://news.microsoft.com/1997/03/18/more-than-45000-developers-see-public-unveiling-of-new-microsoft-visual-studio-97-at-developer-days-events-worldwide/. 
  62. "Search Product and Services Lifecycle Information - Microsoft Lifecycle". https://support.microsoft.com/en-us/lifecycle/search/2970. 
  63. "Search Product and Services Lifecycle Information - Microsoft Lifecycle". https://support.microsoft.com/en-us/lifecycle/search/3002. 
  64. "Visual Studio 1998 (6.0)". WineHQ. CodeWeavers. http://appdb.winehq.org/objectManager.php?sClass=version&iId=4647&iTestingId=15855. 
  65. "Microsoft Unveils Visual Studio 6.0 Enterprise Edition At Tech-Ed Developer Conference". Microsoft. June 3, 1998. https://news.microsoft.com/1998/06/03/microsoft-unveils-visual-studio-6-0-enterprise-edition-at-tech-ed-developer-conference/. 
  66. "Microsoft Announces Worldwide Availability of Visual Studio 6.0 At Dev Days '98". Microsoft. September 2, 1998. https://news.microsoft.com/1998/09/02/microsoft-announces-worldwide-availability-of-visual-studio-6-0-at-dev-days-98/. 
  67. "Visual Studio 6.0 SP6". Microsoft. March 30, 2004. https://docs.microsoft.com/en-us/archive/blogs/mswanson/visual-studio-6-0-sp6. 
  68. "Search Product and Services Lifecycle Information - Microsoft Lifecycle". https://support.microsoft.com/en-us/lifecycle/search/3042. 
  69. "Search Product and Services Lifecycle Information - Microsoft Lifecycle". https://support.microsoft.com/en-us/lifecycle/search/3003. 
  70. "Visual Studio .NET (2002)". WineHQ. CodeWeavers. https://appdb.winehq.org/objectManager.php?sClass=version&iId=15422. 
  71. "Microsoft Launches XML Web Services Revolution With Visual Studio .NET and .NET Framework". Microsoft. February 13, 2002. https://news.microsoft.com/2002/02/13/microsoft-launches-xml-web-services-revolution-with-visual-studio-net-and-net-framework/. 
  72. "Visual Studio .NET 2002 SP1 is now available for download". Microsoft. March 8, 2005. https://learn.microsoft.com/en-gb/archive/blogs/astebner/visual-studio-net-2002-sp1-is-now-available-for-download. 
  73. "Search Product and Services Lifecycle Information - Microsoft Lifecycle". https://support.microsoft.com/en-us/lifecycle/search/3039. 
  74. "Visual Studio .NET 2003". WineHQ. CodeWeavers. https://appdb.winehq.org/objectManager.php?sClass=version&iId=1173. 
  75. "Microsoft Announces Visual Studio .NET 2003 Worldwide Availability". Microsoft. April 23, 2003. https://news.microsoft.com/2003/04/23/microsoft-announces-visual-studio-net-2003-worldwide-availability/. 
  76. "VS .NET 2003 SP1 is available!". Microsoft. August 16, 2006. https://devblogs.microsoft.com/somasegar/vs-net-2003-sp1-is-available/. 
  77. "Search Product and Services Lifecycle Information - Microsoft Lifecycle". https://support.microsoft.com/en-us/lifecycle/search/3040. 
  78. "Visual Studio 2005". WineHQ. CodeWeavers. https://appdb.winehq.org/objectManager.php?sClass=version&iId=4494. 
  79. "Microsoft Joins Customers and Partners to Launch SQL Server 2005, Visual Studio 2005 and BizTalk Server 2006". Microsoft. November 7, 2005. https://news.microsoft.com/2005/11/07/microsoft-joins-customers-and-partners-to-launch-sql-server-2005-visual-studio-2005-and-biztalk-server-2006/. 
  80. "Visual Studio 2005 and .NET Framework 2.0 shipped!". Microsoft. October 27, 2005. https://devblogs.microsoft.com/somasegar/visual-studio-2005-and-net-framework-2-0-shipped/. 
  81. "VS 2005 SP1 is released!". Microsoft. December 15, 2006. https://devblogs.microsoft.com/somasegar/vs-2005-sp1-is-released/. 
  82. "Search Product and Services Lifecycle Information - Microsoft Lifecycle". https://support.microsoft.com/en-us/lifecycle/search/3041. 
  83. 83.0 83.1 "Microsoft to Give Partners More Access to Orcas IDE Code". http://www.eweek.com/article2/0,1895,2212505,00.asp. [yes|permanent dead link|dead link}}]
  84. "Empowering Developers with Visual Studio 2008 and the .NET Framework 3.5". Microsoft. November 19, 2007. https://news.microsoft.com/2007/11/19/empowering-developers-with-visual-studio-2008-and-the-net-framework-3-5/. 
  85. "Visual Studio 2008 and .NET Framework 3.5 shipped!". Microsoft. November 19, 2007. https://devblogs.microsoft.com/somasegar/visual-studio-2008-and-net-framework-3-5-shipped/. 
  86. "Service Pack 1 for VS 2008 and .NET FX 3.5 released!". Microsoft. August 11, 2008. https://devblogs.microsoft.com/somasegar/service-pack-1-for-vs-2008-and-net-fx-3-5-released/. 
  87. "Search Product and Services Lifecycle Information - Microsoft Lifecycle". https://support.microsoft.com/en-us/lifecycle/search/12913. 
  88. 88.0 88.1 "Visual Studio 2010 aka. Dev10 Beta available for download – VolkerW's WebLog". May 18, 2009. https://blogs.msdn.microsoft.com/volkerw/2009/05/18/visual-studio-2010-aka-dev10-beta-available-for-download/. 
  89. "Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 Available". Microsoft. April 11, 2010. https://news.microsoft.com/2010/04/11/microsoft-visual-studio-2010-and-microsoft-net-framework-4-available/. 
  90. "Visual Studio 2010 is now available!". Microsoft. April 12, 2010. https://devblogs.microsoft.com/visualstudio/visual-studio-2010-is-now-available/. 
  91. "Announcing availability of Visual Studio 2010 and .NET Framework 4". Microsoft. April 11, 2010. https://devblogs.microsoft.com/somasegar/announcing-availability-of-visual-studio-2010-and-net-framework-4/. 
  92. "Visual Studio 2010 SP1 Now Available". Microsoft. March 11, 2011. https://devblogs.microsoft.com/visualstudio/visual-studio-2010-sp1-now-available/. 
  93. "Visual Studio 2010 enhancements". Microsoft. March 7, 2011. https://devblogs.microsoft.com/somasegar/visual-studio-2010-enhancements/. 
  94. "Search Product and Services Lifecycle Information - Microsoft Lifecycle". https://support.microsoft.com/en-us/lifecycle/search/20179. 
  95. "Visual Studio 2012 released to the web!". Microsoft. August 22, 2012. https://devblogs.microsoft.com/visualstudio/visual-studio-2012-released-to-the-web/. 
  96. "Visual Studio 2012 and .NET 4.5 now available!". Microsoft. August 15, 2012. https://devblogs.microsoft.com/somasegar/visual-studio-2012-and-net-4-5-now-available/. 
  97. "Visual Studio 2012 and .NET 4.5 Launch". Microsoft. September 12, 2012. https://devblogs.microsoft.com/somasegar/visual-studio-2012-and-net-4-5-launch/. 
  98. "Visual Studio 2012 Update 5 RTM Released". Microsoft. August 27, 2015. https://devblogs.microsoft.com/visualstudio/visual-studio-2012-update-5-rtm-released/. 
  99. 99.0 99.1 99.2 99.3 "Support for older versions of Visual Studio". https://docs.microsoft.com/en-us/visualstudio/releases/2019/servicing#support-for-older-versions-of-visual-studio. 
  100. "Visual Studio 2013 released to web!". Microsoft. October 17, 2013. https://devblogs.microsoft.com/visualstudio/visual-studio-2013-released-to-web/. 
  101. "Visual Studio 2013 available for download". Microsoft. October 17, 2013. https://devblogs.microsoft.com/somasegar/visual-studio-2013-available-for-download/. 
  102. 102.0 102.1 "Visual Studio 2015 and Visual Studio 2013 Update 5 Released". Microsoft. July 20, 2015. https://devblogs.microsoft.com/visualstudio/visual-studio-2015-and-visual-studio-2013-update-5-released/. 
  103. "Visual Studio 2015 and .NET 4.6 Available for Download". Microsoft. July 20, 2015. https://devblogs.microsoft.com/somasegar/visual-studio-2015-and-net-4-6-available-for-download/. 
  104. "Visual Studio 2015 Update 3 and .NET Core 1.0 Available". Microsoft. June 27, 2016. https://devblogs.microsoft.com/visualstudio/visual-studio-2015-update-3-and-net-core-1-0-available-now/. 
  105. "Announcing Visual Studio 2017 General Availability… and more". Microsoft. March 7, 2017. https://devblogs.microsoft.com/visualstudio/announcing-visual-studio-2017-general-availability-and-more/. 
  106. "Visual Studio 2017 version 15.9 Release Notes" (in en-us). January 9, 2024. https://learn.microsoft.com/en-us/visualstudio/releasenotes/vs2017-relnotes. 
  107. 107.0 107.1 Montgomery, John (April 2, 2019). "Visual Studio 2019: Code faster. Work smarter. Create the future.". Microsoft. https://devblogs.microsoft.com/visualstudio/visual-studio-2019-code-faster-work-smarter-create-the-future/. 
  108. Kristensen, Mads (August 10, 2021). "Visual Studio 2019 v16.11 is Available Now!". Microsoft. https://devblogs.microsoft.com/visualstudio/visual-studio-16-11/. 
  109. "Visual Studio 2019 version 16.11 Release Notes" (in en-us). https://docs.microsoft.com/en-us/visualstudio/releases/2019/release-notes. 
  110. "Visual Studio 2019 - Microsoft Lifecycle | Microsoft Docs". Microsoft. https://docs.microsoft.com/en-us/lifecycle/products/visual-studio-2019. 
  111. "Announcing .NET 5.0". November 10, 2020. https://devblogs.microsoft.com/dotnet/announcing-net-5-0. 
  112. "Visual Studio 2022 now available". Microsoft. November 8, 2021. https://devblogs.microsoft.com/visualstudio/visual-studio-2022-now-available/. 
  113. "Visual Studio 2022 Release Notes". Microsoft. July 11, 2023. https://learn.microsoft.com/en-us/visualstudio/releases/2022/release-notes#1765--visual-studio-2022-version-1765. 
  114. "Visual Studio 2022 - Microsoft Lifecycle". https://docs.microsoft.com/en-us/lifecycle/products/visual-studio-2022. 
  115. "Announcing .NET 6 — The Fastest .NET Yet". November 8, 2021. https://devblogs.microsoft.com/dotnet/announcing-net-6. 
  116. ".NET 7 is Available Today". November 8, 2023. https://devblogs.microsoft.com/dotnet/announcing-dotnet-7. 
  117. "update & help from Microsoft website". http://support.microsoft.com/kb/192912. 
  118. "System Requirements (Visual Studio 6.0)". Microsoft Co.. October 3, 2006. http://msdn.microsoft.com/en-us/vstudio/aa700918.aspx. 
  119. "Visual J++ Solution Center". Support. Microsoft. http://support.microsoft.com/gp/vjj. 
  120. "Visual J++ 6.0". MSDN. Microsoft. April 8, 2010. https://msdn.microsoft.com/en-us/library/ms950413.aspx. 
  121. "Features by Edition". Microsoft. http://msdn.microsoft.com/vstudio/previous/vs6/features/default.aspx. 
  122. "System Requirements (Visual Studio .NET)". MSDN. October 12, 2006. http://msdn.microsoft.com/en-us/vstudio/aa700866.aspx. 
  123. "Visual Studio .NET 2002 SP1". Microsoft. http://www.microsoft.com/downloads/details.aspx?FamilyID=c41d8159-b42f-4d06-a797-e510494976ee&displaylang=en. 
  124. 124.0 124.1 "Hacking Visual Studio". http://www.ondotnet.com/pub/a/dotnet/excerpt/vshacks_chap1/index.html?page=4. 
  125. "Microsoft Visual Studio .NET 2003 Service Pack 1". Microsoft. http://www.microsoft.com/downloads/details.aspx?familyid=69D2219F-CE82-46A5-8AEC-072BD4BB955E&displaylang=en. 
  126. "How to: Modify WINVER and _WIN32_WINNT". https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2008/6sehtctf(v%3dvs.90). 
  127. "Breaking Changes". https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2008/bb531344(v%3dvs.90). 
  128. "Visual Studio 2005 Service Pack 1". Microsoft. http://www.microsoft.com/downloads/details.aspx?FamilyID=BB4A75AB-E2D4-4C96-B39D-37BAF6B5B1DC&displaylang=en. 
  129. "Visual Studio Service Pack 1 Update". http://www.microsoft.com/downloads/details.aspx?FamilyID=90e2942d-3ad1-4873-a2ee-4acc0aace5b6&displaylang=en. 
  130. "Building, Testing, and Deployment". Microsoft. http://msdn.microsoft.com/en-us/library/88fx1xy0(VS.80).aspx#rtmbuildtestdeploy. 
  131. "New Language Features in Visual C++". Visual Studio 2005 Visual C++ Language Reference. MSDN. https://msdn.microsoft.com/en-us/library/xey702bw(VS.80).aspx. 
  132. "64-bit and Visual Studio 2005". April 11, 2006. https://docs.microsoft.com/en-us/archive/blogs/deeptanshuv/64-bit-and-visual-studio-2005. 
  133. VSTA vs VSTO in Software Development Kits . In the latest MSDN Flash email I just received, it announces the release of Visual Studio Tools for Applications 2.0 (VSTA).
  134. "Microsoft Details Dynamic IT Strategy at Tech-Ed 2007". http://www.earthtimes.org/articles/show/news_press_release,115898.shtml. 
  135. Beehler, Jeff (November 19, 2007). "Visual Studio Team System 2008 ships!". Jeff Beehler's Blog. MSDN Blogs. http://blogs.msdn.com/b/jeffbe/archive/2007/11/19/visual-studio-team-system-2008-ships.aspx. 
  136. "Microsoft Windows Visual Studio Team System 2008". MSDN Search. MSDN Social. 2010. http://social.msdn.microsoft.com/Search/en-US?query=Microsoft%20Windows%20Visual%20Studio%20Team%20System%202008&resultsLang=en-GB&ac=8. 
  137. "Download Details: Microsoft Visual Studio 2008 Service Pack 1 (exe)". http://www.microsoft.com/downloads/details.aspx?FamilyID=fbee1648-7106-44a7-9649-6d9f6d58056e&DisplayLang=en. 
  138. "Windows Platforms (CRT)". https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/ws0swas0(v%3dvs.100). 
  139. Taft, Darryl K.. "Microsoft Pushes Secure, Quality Code". eWeek. http://www.eweek.com/article2/0,1759,2192515,00.asp?kc=EWRSS03119TX1K0000594. 
  140. "Whats New in MFC 9.0 (Orcas)". CodeGuru. http://www.codeguru.com/cpp/controls/buttonctrl/advancedbuttons/article.php/c14407/. 
  141. Dudla, Nikola. "What Is STL/CLR?". Developing Windows Applications by Mykola Dudar. Microsoft. http://blogs.msdn.com/nikolad/archive/2006/06/16/STLCLR-Intro.aspx. 
  142. "Libraries Work In Orcas". Visual C++ Team Blog. Microsoft. http://blogs.msdn.com/vcblog/archive/2006/08/02/686894.aspx. 
  143. "Download Visual Studio 03/07 CTP". http://blog.csharp-online.net/?p=108. 
  144. "XSD Designer in Visual Studio". http://www.msdner.com/dev-archive/204/153-1021-2046403.shtm. 
  145. Somasegar, S.. "Debugging and Profiling Features in VS 2008". Microsoft. http://blogs.msdn.com/somasegar/archive/2007/09/14/debugging-and-profiling-features-in-vs-2008.aspx. 
  146. 146.0 146.1 Robbin, John. "Neat New Multithreaded Debugging Features in VS 2008". http://www.wintellect.com/cs/blogs/jrobbins/archive/2007/08/01/neat-new-multithreaded-debugging-features-in-vs-2008.aspx. 
  147. Hanselman, Scott. "Multi-threaded Debugging in Visual Studio 2008". http://www.hanselman.com/blog/MultithreadedDebuggingInVisualStudio2008.aspx. 
  148. Guthrie, Scott (October 3, 2007). "Releasing the Source Code for the .NET Framework Libraries". http://weblogs.asp.net/scottgu/archive/2007/10/03/releasing-the-source-code-for-the-net-framework-libraries.aspx. 
  149. "Microsoft Releases Visual Studio 2010, .NET Framework 4". April 12, 2010. https://www.eweek.com/development/microsoft-releases-visual-studio-2010-.net-framework-4. 
  150. "Microsoft launches Visual Studio 2010 and .NET Framework 4 [download"]. April 14, 2010. https://www.digit.in/features/general/microsoft-launches-visual-studio-2010-and-net-framework-4-download-4417.html. 
  151. 151.0 151.1 151.2 151.3 151.4 "Visual Studio 2010 Team System First Look". Microsoft. http://www.microsoft.com/visualstudio/en-us/products/2010/default.mspx. 
  152. Quintero, Carlos. "Visual Studio 2010 Extensibility moving beyond add-ins and packages". http://msmvps.com/blogs/carlosq/archive/2008/10/26/visual-studio-2010-extensibility-moving-beyond-add-ins-and-packages.aspx. 
  153. "F# to ship as part of Visual Studio 2010". http://blogs.msdn.com/dsyme/archive/2008/12/10/fsharp-to-ship-as-part-of-visual-studio-2010.aspx. 
  154. Moth, Daniel. "Debugging Parallel applications with VS2010". http://www.danielmoth.com/Blog/2008/11/debugging-parallel-applications-with.html. 
  155. "More support for parallelism in the next version of Visual Studio". MSDN. http://msdn.microsoft.com/en-us/magazine/cc817396.aspx. 
  156. Worthington, David. "SD Times: Intel, Microsoft converge on parallel computing". http://www.sdtimes.com/INTEL_MICROSOFT_CONVERGE_ON_PARALLEL_COMPUTING/About_PARALLELPROGRAMMING_and_WINDOWS_and_INTEL_and_MICROSOFT/32731. 
  157. Worthington, David. "Intel addresses development life cycle with Parallel Studio". http://sdtimes.com/link/33497. 
  158. 158.0 158.1 158.2 158.3 Somasegar, S.. "Code Focused Development in VS 2010". http://blogs.msdn.com/somasegar/archive/2008/12/19/code-focused-development-in-vs-2010.aspx. 
  159. "Bug: Intellisense believes itself in C++ while working on a C file.". http://social.msdn.microsoft.com/Forums/en/vcprerelease/thread/54995196-ab08-416d-9ddf-475bfb161779. 
  160. "Dynamic Help Removed From Visual Studio 2010". http://leedumond.com/blog/dynamic-help-removed-from-visual-studio-2010/. 
  161. "Help Viewer Power Tool". http://visualstudiogallery.msdn.microsoft.com/en-us/60a86afe-159b-4940-a22f-4fef055cbd63. 
  162. "Microsoft Visual Studio 2010 Service Pack 1 (Installer)". http://www.microsoft.com/download/en/details.aspx?id=23691. 
  163. "Visual Studio 2010 transition benefits: "the ultimate offer" – What you need to know". Microsoft MSDN Blogs. http://blogs.msdn.com/b/dannawi/archive/2010/01/07/visual-studio-2010-transition-benefits-the-ultimate-offer-what-you-need-to-know.aspx. 
  164. 164.0 164.1 "Microsoft Unveils Next Version of Visual Studio and .NET Framework". News Center. Redmond, Washington: Microsoft. September 29, 2008. https://news.microsoft.com/2008/09/29/microsoft-unveils-next-version-of-visual-studio-and-net-framework/. 
  165. "Doing Architecture with Team System Rosario". http://visualstudiomagazine.com/columns/article.aspx?editorialsid=2583. Retrieved 18 April 2009. 
  166. 166.0 166.1 "Visual Studio 2010 Architecture Edition". March 29, 2009. https://ajdotnet.wordpress.com/2009/03/29/visual-studio-2010-architecture-edition/. 
  167. "Historical Debugger and Test Impact Analysis in Visual Studio Team System 2010". Channel 9. http://channel9.msdn.com/posts/VisualStudio/Historical-Debugger-and-Test-Impact-Analysis-in-Visual-Studio-Team-System-2010/. 
  168. Heydarian, Habib. "What's new in Visual Studio Team System 2010: Episode 2". http://blogs.msdn.com/habibh/archive/2008/10/01/what-s-new-in-visual-studio-team-system-2010-issue-2.aspx. 
  169. "Visual Studio 2010 Lab Management". http://blogs.microsoft.co.il/blogs/maordavid/archive/2008/12/22/visual-studio-2010-lab-management.aspx. 
  170. Fried, Ina. "Visual Studio 2010 to come with 'black box'". CNET. CBS Interactive. http://news.cnet.com/8301-13860_3-10052412-56.html. 
  171. "Visual Studio 2012 and .NET 4.5 Complete! - Somasegar's blog - Site Home - MSDN Blogs". Blogs.msdn.com. August 1, 2012. http://blogs.msdn.com/b/somasegar/archive/2012/08/01/visual-studio-2012-and-net-4-5-complete.aspx. 
  172. "Can I record/play Macros in Visual Studio 2012/2013?". stackoverflow.com. December 31, 2013. https://stackoverflow.com/q/12062515. 
  173. "What's New for Visual C++ in Visual Studio 2012". Msdn.microsoft.com. August 15, 2012. https://msdn.microsoft.com/en-us/library/hh409293%28v=vs.110%29.aspx. 
  174. "Visual Studio® 11 Developer Preview Download". Microsoft Download Center. Microsoft Corporation. September 16, 2011. http://www.microsoft.com/download/en/details.aspx?DisplayLang=en&id=27538. 
  175. "Bug: apps created with CRT and MFC vNext (11) cannot be used on Windows XP SP3". Microsoft Connect. Microsoft Corporation. September 24, 2011. https://connect.microsoft.com/VisualStudio/feedback/details/690617. "This behavior is by design in MFC and CRT for Visual Studio vNext. The minimum supported operating systems are Windows Server 2008 SP2 and Windows Vista." 
  176. "Targeting Windows XP with C++ in Visual Studio 2012". Visual C++ Team blog. Microsoft Corporation. June 15, 2012. http://blogs.msdn.com/b/vcblog/archive/2012/06/15/10320645.aspx. 
  177. "Visual Studio 2012 Update 1 is now available!". Somasegar's blog. Microsoft Corporation. November 26, 2012. http://blogs.msdn.com/b/somasegar/archive/2012/11/26/visual-studio-2012-update-1-now-available.aspx. 
  178. 178.0 178.1 178.2 178.3 178.4 178.5 178.6 Kumar, Sumit (August 24, 2011). "First Look at the New C++ IDE Productivity Features in the Next Version of Visual Studio". VC++ Team Blog. MSDN Blogs (Microsoft Corporation). http://blogs.msdn.com/b/vcblog/archive/2011/08/24/10200097.aspx. 
  179. "The Visual Studio 2012 Feedback Tool: A better way to submit bugs - The Visual Studio Blog - Site Home - MSDN Blogs". Blogs.msdn.com. January 28, 2013. http://blogs.msdn.com/b/visualstudio/archive/2012/06/20/the-visual-studio-2012-feedback-tool-a-better-way-to-submit-bugs.aspx. 
  180. "Color Returns to Visual Studio 11 User Interface -". https://visualstudiomagazine.com/articles/2012/05/08/color-returns-to-visual-studio-11-user-interface.aspx. 
  181. "Visual Studio 11 User Interface Updates Coming in RC". May 8, 2012. https://devblogs.microsoft.com/visualstudio/visual-studio-11-user-interface-updates-coming-in-rc/. 
  182. "A DESIGN WITH ALL-CAPS". June 5, 2012. https://devblogs.microsoft.com/visualstudio/a-design-with-all-caps/. 
  183. "Microsoft Ignores Usability and Users - VS 2012 Keeps ALL-CAPS Menus". http://www.i-programmer.info/news/177-windows-8/4324-microsoft-ignores-usability-and-users-vs-2012-keeps-all-cap-menus.html. 
  184. "On Visual Studio 11's redesign awkwardness - Arktronic.com". https://arktronic.com/weblog/2012-05-09/visual-studio-11s-redesign-awkwardness/. 
  185. "How To Prevent Visual Studio 2012 ALL CAPS Menus!". https://www.richard-banks.org/2012/06/how-to-prevent-visual-studio-2012-all.html. 
  186. "Visual Studio 2013 Preview Available Now!" (in en-US). June 26, 2013. https://devblogs.microsoft.com/visualstudio/visual-studio-2013-preview-available-now/. 
  187. "Visual Studio 2013 RC available now!" (in en-US). September 9, 2013. https://devblogs.microsoft.com/visualstudio/visual-studio-2013-rc-available-now/. 
  188. "Visual Studio 2013 released to web!" (in en-US). October 17, 2013. https://devblogs.microsoft.com/visualstudio/visual-studio-2013-released-to-web/. 
  189. Somasegar, S.. "Visual Studio 2013 Launch: Announcing Visual Studio Online". MSDN Blogs. http://blogs.msdn.com/b/somasegar/archive/2013/11/13/visual-studio-2013-launch-announcing-visual-studio-online.aspx. 
  190. "Visual Studio 2013 Update 1". Visual Studio site. Microsoft Corporation. January 20, 2014. http://www.visualstudio.com/en-us/news/2014-jan-20-vs. 
  191. "Visual Studio 2013 Update 1". Somasegar's blog. Microsoft Corporation. January 20, 2014. http://blogs.msdn.com/b/somasegar/archive/2014/01/20/visual-studio-2013-update-1.aspx. 
  192. "Visual Studio 2013 Update 2 RTM". Visual Studio site. Microsoft Corporation. May 12, 2014. http://www.visualstudio.com/en-us/news/2014-may-12-vs. 
  193. "Description of Visual Studio 2013 Update 3". Microsoft Corporation. August 15, 2014. http://support.microsoft.com/kb/2933779. 
  194. "Visual Studio 2013 Update 4 RTM". Visual Studio site. Microsoft Corporation. November 12, 2014. https://www.visualstudio.com/en-us/news/releasenotes/vs2013-update4-rtm-vs. 
  195. 195.0 195.1 195.2 195.3 195.4 "Visual Studio 2017 15.9 Release Notes". https://docs.microsoft.com/en-us/visualstudio/releasenotes/vs2017-relnotes. 
  196. Montgomery, John (June 3, 2014). "Visual Studio "14" CTP now available". The Visual Studio Blog. http://blogs.msdn.com/b/visualstudio/archive/2014/06/03/visual-studio-14-ctp-now-available.aspx. 
  197. Montgomery, John (November 12, 2014). "Visual Studio 2015 Preview, Visual Studio Community 2013, Visual Studio 2013 Update 4, and More". Microsoft. http://blogs.msdn.com/b/visualstudio/archive/2014/11/12/visual-studio-2015-preview-visual-studio-community-2013-visual-studio-2013-update-4-and-more.aspx. 
  198. Liuson, Julia (February 9, 2017). "Join Us: Visual Studio 2017 Launch Event and 20th Anniversary". Microsoft. https://blogs.msdn.microsoft.com/visualstudio/2017/02/09/visual-studio-2017-launch-event-and-20th-anniversary/. 
  199. Montgomery, John (March 30, 2016). "Visual Studio "15" Preview Now Available". Microsoft. https://blogs.msdn.microsoft.com/visualstudio/2016/03/30/visual-studio-15-preview/. 
  200. Montgomery, John (May 10, 2016). "Visual Studio "15" Preview 2". Microsoft. https://blogs.msdn.microsoft.com/visualstudio/2016/05/10/visual-studio-15-preview-2/. 
  201. "Visual Studio "15" Preview 2". Microsoft. May 10, 2016. https://www.visualstudio.com/en-us/news/releasenotes/vs15-relnotes. 
  202. Montgomery, John (July 7, 2016). "Visual Studio "15" Preview 3". Microsoft. https://blogs.msdn.microsoft.com/visualstudio/2016/07/07/visual-studio-15-preview-3/. 
  203. "Visual Studio "15" Preview 3". Microsoft. July 7, 2016. https://www.visualstudio.com/en-us/news/releasenotes/vs15-relnotes. 
  204. "Visual Studio "15" Preview 4 Now Available For Download With New Installation Experience And More - MSPoweruser". August 22, 2016. http://mspoweruser.com/visual-studio-15-preview-4-now-available-for-download-with-new-installation-experience-and-more/. 
  205. "Visual Studio "15" Preview 4". August 22, 2016. https://blogs.msdn.microsoft.com/visualstudio/2016/08/22/visual-studio-15-preview-4/. 
  206. "Announcing Visual Studio "15" Preview 5". October 5, 2016. https://blogs.msdn.microsoft.com/visualstudio/2016/10/05/announcing-visual-studio-15-preview-5/. 
  207. "Visual Studio 2017 - A Quick Look at Productivity Enhancements in Visual Studio 2017 RC". November 14, 2016. https://msdn.microsoft.com/magazine/mt790181. 
  208. "Visual Studio 2017 Release Candidate". https://blogs.msdn.microsoft.com/visualstudio/2016/11/16/visual-studio-2017-rc/. 
  209. 209.0 209.1 209.2 209.3 "Announcing Visual Studio 2017 General Availability". March 7, 2017. https://blogs.msdn.microsoft.com/visualstudio/2017/03/07/announcing-visual-studio-2017-general-availability-and-more/. 
  210. "Visual Studio 2017 Version 15.4 Released". October 10, 2017. https://devblogs.microsoft.com/visualstudio/visual-studio-2017-version-15-4-released/. 
  211. "Visual Studio 2017 Version 15.5, Visual Studio for Mac Released". December 4, 2017. https://devblogs.microsoft.com/visualstudio/visual-studio-2017-version-15-5-visual-studio-for-mac-released/. 
  212. "Visual Studio 2017 version 15.6, Visual Studio for Mac version 7.4 Released". March 6, 2018. https://devblogs.microsoft.com/visualstudio/visual-studio-2017-version-15-6-visual-studio-for-mac-version-7-4-released/. 
  213. "Visual Studio 2017 15.8 Release Notes". https://docs.microsoft.com/en-us/visualstudio/releasenotes/vs2017-relnotes-v15.8. 
  214. "Visual Studio 2019 Compatibility document". Microsoft. https://docs.microsoft.com/en-us/visualstudio/releases/2019/compatibility#-other-platforms-and-technologies. 
  215. "What's Next for Visual Studio". June 6, 2018. https://devblogs.microsoft.com/visualstudio/whats-next-for-visual-studio/. 
  216. Blog, Visual Studio (December 4, 2018). "Making every developer more productive with Visual Studio 2019". https://blogs.msdn.microsoft.com/visualstudio/2018/12/04/making-every-developer-more-productive-with-visual-studio-2019/. 
  217. Blog, Visual Studio (January 24, 2019). "Visual Studio 2019 Preview 2 is now available" (in en-US). https://blogs.msdn.microsoft.com/visualstudio/2019/01/24/visual-studio-2019-preview-2-is-now-available/. 
  218. "Visual Studio 2019 Preview Release Notes" (in en-US). https://docs.microsoft.com/en-us/visualstudio/releases/2019/release-notes-preview#VS2019_Preview3. 
  219. "Visual Studio 2019 Release Candidate (RC) now available" (in en-US). February 27, 2019. https://devblogs.microsoft.com/visualstudio/visual-studio-2019-release-candidate-rc-now-available/. 
  220. Salter, Jim (2021-04-20). "Microsoft Visual Studio 2022 will (finally) enter the 64-bit world" (in en-us). https://arstechnica.com/gadgets/2021/04/microsoft-visual-studio-2022-will-finally-enter-the-64-bit-world/. 
  221. "Visual Studio 2022" (in en-US). 2021-04-19. https://devblogs.microsoft.com/visualstudio/?p=232313. 
  222. Blog, Visual Studio (June 17, 2021). "Visual Studio 2022 Preview 1 now available!". https://devblogs.microsoft.com/visualstudio/visual-studio-2022-preview-1-now-available/. 
  223. Blog, Visual Studio (July 14, 2021). "Visual Studio 2022 Preview 2 is out!". https://devblogs.microsoft.com/visualstudio/visual-studio-2022-preview-2-is-out/. 
  224. Blog, Visual Studio (August 10, 2021). "Visual Studio 2022 Preview 3 now available!". https://devblogs.microsoft.com/visualstudio/visual-studio-2022-preview-3-now-available/. 
  225. "Visual Studio 2022 Preview 4 is now available!" (in en-US). 2021-09-14. https://devblogs.microsoft.com/visualstudio/visual-studio-2022-preview-4-is-now-available/. 
  226. "Join us November 8 for the Launch of Visual Studio 2022" (in en-US). 2021-10-12. https://devblogs.microsoft.com/visualstudio/join-us-november-8th-for-the-launch-of-visual-studio-2022/. 
  227. "Visual Studio 2022 now available" (in en-US). 2021-11-08. https://devblogs.microsoft.com/visualstudio/visual-studio-2022-now-available/. 
  228. Blankenship, Ed (January 2014). "Introducing Visual Studio Online". Microsoft. http://msdn.microsoft.com/en-us/magazine/dn519923.aspx. 
  229. "Features Timeline". Microsoft. http://www.visualstudio.com/en-us/news/release-archive-vso. 
  230. Yegulalp, Serdar (November 14, 2013). "Microsoft reinvents Visual Studio as an Azure cloud service". IDG. http://www.infoworld.com/article/2609774/cloud-computing/microsoft-reinvents-visual-studio-as-an-azure-cloud-service.html. 
  231. Harry, Brian (November 18, 2015). "News from Connect(); 2015". Microsoft. http://blogs.msdn.com/b/bharry/archive/2015/11/18/news-from-connect-2015.aspx. 
  232. "Visual Studio Online Pricing Details". Microsoft. https://azure.microsoft.com/en-us/pricing/details/visual-studio-team-services/. 
  233. Bright, Peter (November 12, 2013). "Microsoft takes development into the cloud with Visual Studio Online". Ars Technica. Condé Nast. https://arstechnica.com/information-technology/2013/11/microsoft-takes-development-into-the-cloud-with-visual-studio-online/. 
  234. "DevOps and Application Lifecycle Management". MSDN. Microsoft. http://msdn.microsoft.com/library/fda2bad5.aspx. 
  235. "Microsoft Visual Studio Team System Code Name "Rosario"". http://msdn.microsoft.com/en-us/vstudio/bb725993.aspx. 
  236. van Haaften, Octavie (November 25, 2009). "Visual Studio 2010 Team System session". SharePoint: Working on it…. https://blog.octavie.nl/index.php/2009/11/25/visual-studio-2010-team-system-session. 
  237. Harry, Brian (November 18, 2015). "News from Connect(); 2015". Brian Harry's blog. Microsoft. https://blogs.msdn.microsoft.com/bharry/2015/11/18/news-from-connect-2015/. 
  238. Hinshelwood, Martin (June 20, 2012). "Installing TFS 2012 with Lab Management 2012". https://nkdagility.com/installing-tfs-2012-with-lab-management-2012/. 
  239. "LightSwitch HTML Client". Microsoft. http://msdn.microsoft.com/en-us/vstudio/htmlclient.aspx. 
  240. Massi, Beth (January 17, 2013). "Get Started Building SharePoint Apps in Minutes with LightSwitch". Microsoft. http://blogs.msdn.com/b/bethmassi/archive/2013/01/17/get-started-building-sharepoint-apps-in-minutes-with-lightswitch.aspx. 
  241. Rivard, John (March 22, 2012). "LightSwitch Architecture: OData (John Rivard)". Microsoft. http://blogs.msdn.com/b/lightswitch/archive/2012/03/22/lightswitch-architecture-odata.aspx. 
  242. "LightSwitch Update". Microsoft. October 14, 2016. https://blogs.msdn.microsoft.com/lightswitch/2016/10/14/lightswitch-update/. 
  243. "How to: Deploy a LightSwitch OData Service". Microsoft. https://msdn.microsoft.com/en-us/library/vstudio/hh973447.aspx. 
  244. "Visual Studio LightSwitch 2011 is Launching 26 July 26". Visual Studio LightSwitch Team Blog. Microsoft. July 5, 2011. http://blogs.msdn.com/b/lightswitch/archive/2011/07/05/visual-studio-lightswitch-2011-is-launching-july-26th.aspx. 
  245. Massi, Beth (August 3, 2010). "Rapid Business Application Development with Visual Studio LightSwitch". Microsoft. https://blogs.msdn.microsoft.com/bethmassi/2010/08/03/rapid-business-application-development-with-visual-studio-lightswitch/. 
  246. "LightSwitch Update". Microsoft. https://blogs.msdn.microsoft.com/lightswitch/2016/10/14/lightswitch-update/. 
  247. Lardinois, Frederic (April 29, 2015). "Microsoft Launches Visual Studio Code, A Free Cross-Platform Code Editor For OS X, Linux And Windows". TechCrunch. https://techcrunch.com/2015/04/29/microsoft-shocks-the-world-with-visual-studio-code-a-free-code-editor-for-os-x-linux-and-windows. 
  248. "GitHub - microsoft/vscode: Visual Studio Code.". July 22, 2019. https://github.com/microsoft/vscode. 
  249. Bright, Peter (April 14, 2016). "Visual Studio Code editor hits version 1, has half a million users". https://arstechnica.com/information-technology/2016/04/visual-studio-code-editor-hits-version-1-has-half-a-million-users/. 
  250. "Beginners Guide to Performance Profiling". Microsoft. November 15, 2016. https://msdn.microsoft.com/en-IN/library/ms182372.aspx. 

External links

[[Category:Microsoft Visual Studio|]]