Showing results for Documentation - C++ Team Blog

Apr 26, 2023
2
2

Documentation for C++20 Ranges

Sy Brand Tyler Whitney
Sy,
Tyler

C++20 introduced Ranges to the standard library: a new way of expressing composable transformations on collections of data. This feature adds a huge amount of expressive power and flexibility to C++. As with many concepts in C++, that power comes with new concepts to learn, and some complexity which can be difficult to navigate. One way of tamin...

C++AnnouncementDocumentation
Aug 13, 2019
1
0

Side-by-side Minor Version MSVC Toolsets in Visual Studio 2019

Will Buik
Will Buik

Visual Studio 2019 version 16.1 Preview 3 ships with the first side-by-side minor versions of the v142 MSVC toolset. We first shipped minor side-by-side versions of MSVC toolsets with Visual Studio 2017, but a few things have changed in 2019. This post covers what’s new; primarily more granular versions of the toolsets in the installer and support ...

Documentation
Nov 26, 2018
5
0

Using Visual Studio for Cross Platform C++ Development Targeting Windows and Linux

Marc Goodner
Marc Goodner

A great strength of C++ is the ability to target multiple platforms without sacrificing performance. If you are using the same codebase for multiple targets, then CMake is the most common solution for building your software. You can use Visual Studio for your C++ cross platform development when using CMake without needing to create or generate Visu...

Documentation
Sep 18, 2018
0
0

STL Features and Fixes in VS 2017 15.8

Billy O'Neal
Billy O'Neal

15.7 was our first feature complete C++17 library (except floating-point <charconv>), and in 15.8 we have addressed large numbers of outstanding bugs. As usual, we’ve maintained a detailed list of the STL fixes that are available. Visual Studio 2017 15.8 is available at https://visualstudio.microsoft.com/vs/. New Features ...

Documentation
Sep 11, 2018
7
2

Using C++17 Parallel Algorithms for Better Performance

Billy O'Neal
Billy O'Neal

This post is part of a regular series of posts where the C++ product team here at Microsoft and other guests answer questions we have received from customers. The questions can be about anything C++ related: MSVC toolset, the standard language and library, the C++ standards committee, isocpp.org, CppCon, etc. Today’s post is by Billy O'Neal. C++...

General C++ SeriesDocumentation
Jul 5, 2018
4
1

Shared PCH usage sample in Visual Studio

EricMittelette
EricMittelette

This post was written by Olga Arkhipova and Xiang Fan Oftentimes, multiple projects in a Visual Studio solution use the same (or very similar) precompiled headers. As pch files are often big and building them takes a significant amount of time, this leads to the popular question: is it possible for several projects to use the same pch file which...

Documentation
Mar 27, 2018
0
0

Configuring C++ IntelliSense and Browsing

Oleg Kharitonov
Oleg Kharitonov

Whether you are creating a new (or modifying an existing) C++ project using a Wizard, or importing an project into Visual Studio from another IDE, it’s important to configure the project correctly for the IntelliSense and Browsing features to provide accurate information.  This article provides some tips on configuring the projects and describes a ...

DocumentationNew User
Feb 17, 2017
0
0

Continuous Integration for C++ with Visual Studio Team Services

BryanDiLaura
BryanDiLaura

Visual Studio Team Services (VSTS) is an easy way to help your team manage code and stay connected when developing. VSTS supports continuous integration using a shared code repository that everyone on the team uses to check in code changes. Every time any code is checked in, it is fully integrated by running a full automated build. By integrating f...

Documentation
Feb 8, 2017
4
3

Targeting the Windows Subsystem for Linux from Visual Studio

Marc Goodner
Marc Goodner

Update Jan. 8, 2020: Visual Studio 2019 version 16.1 and later has native support for WSL. This eliminates the need to establish an SSH connection and is the recommended workflow for building and debugging on WSL. The Windows Subsystem for Linux (WSL) was first introduced at Build in 2016 and was delivered as an early beta in Windows 10 Annivers...

LinuxDocumentation