As we enter the new year, it’s a good time to look back at all the features and improvements we made for C++ developers in Visual Studio in 2023. We’ve made advancements across the IDE, toolchain, and the vcpkg package manager in both performance and functionality. Some focus areas have been ARM64 support, Unreal Engine development, code safety, and cross-platform development. Let us know what you think of these features below, send us your feedback!
Contents
Visual Studio IDE
Cross-Platform
Cross-platform development is a first-class citizen in Visual Studio and has been for many years now. We’ve added many new features for those targeting Linux, Windows Subsystem for Linux, embedded platforms, and those using CMake for their builds.
Integrated Linux Terminal
The Linux Integrated Terminal allows you to debug Linux applications with a fully-featured terminal experience directly inside Visual Studio.
Test and Build Multiple CMake Targets
You can now test and build multiple CMake Targets from the CMake Targets view.
CMake Debugger
Use the CMake Debugger to debug your CMake scripts like you would any other program. You can set breakpoints, see the values of CMake variables at the current point of execution, and more.
Remote File Explorer
Use the Remote File Explorer to see a directory tree of the files on a remote system.
STM32CubeIDE Project Support
Import STM32CubeIDE projects with the new STM32CubeIDE Project Support.
Automatic Windows Subsystem for Linux Installation
Install Windows Subsystem for Linux automatically from Visual Studio with “Install WSL for Me”.
Remote Linux Unit Test Support
Remote Linux unit test support adds your remote Linux tests to the Test Explorer.
Productivity
We want your development to be as fast and low-friction as possible. Our productivity features address this, giving you better ways to complete your day-to-day tasks.
Sticky Scroll
Sticky Scroll gives you context for the current code location in your editor by sticking the top line of nested blocks to the top of the window.
Brace Pair Colorization
Brace Pair Colorization lets you easily see matching brace pairs by making them the same color.
Spell Checker
The new Spell Checker finds and corrects spelling issues in your code.
All-in-one Search
All-in-one Search joints together the code search and feature search functions into one tool.
Breakpoint Groups
Breakpoint groups let you organize breakpoints to make large collections easier to manage.
File Comparison Window
You can now compare files straight from the solution explorer with the File Comparison window.
Copy-paste with Correct Indentation
Copy-paste with correct indentation makes it easier to accurately share code with others.
Parallel Stack Filtering
Parallel stack filtering lets you selectively display or hide specific threads or frames.
Doxygen for Overloaded Functions
We improved Doxygen behaviour for overload resolution.
Macro Expansion Visualization
You can now see macro expansions step-by-step with Macro Expansion Visualization.
Create GitHub Pull Request from Visual Studio
You can now create GitHub pull requests from Visual Studio.
Structured Diagnostics
Visualize complex, hierarchical compiler errors with structured diagnostics.
Size and Alignment of Types
See size and alignment of types directly in the editor.
Memory Layout Visualization
Use our new memory layout visualization tool for seeing how types will be stored in memory.
Include Cleanup
Optimize your #includes with #include directive cleanup.
Game Development
Game development is a key area of focus for us, as game developers often have constraints and workflows which other C++ developers do not. Last year we focused especially on our Unreal Engine support.
Unreal Engine Blueprint References and Asset Inspector
Navigate your Unreal Engine Blueprints with the new Unreal Engine Blueprint References and Asset Inspector.
Unreal Engine Log Viewer
Use the Unreal Engine Log Viewer to see your UE logs directly in Visual Studio.
HLSL Support
Edit HLSL shaders with improved HLSL editor integration.
Unreal Engine Macro Formatting
Unreal Engine macro formatting ensures that your UE macros are handled appropriately by the autoformatter.
Unreal Engine Naming Convention Checker
Use the Unreal Engine naming convention checker to ensure your code conforms to expectations.
Unreal Engine Blueprint Find All References
Find all UE Blueprint references with a single command using Unreal Engine Blueprint Find All References.
Unreal Engine Test Adapter
The Unreal Engine test adapter adds your UE tests to the Test Explorer window.
Unreal Engine Code Snippets
Use Unreal Engine code snippets to quickly generate common UE-specific code.
Unreal Engine Macro Specifier Suggestions
Unreal Engine macro specifier suggestions gives you a quick description of UE macros without you having to leave your editor.
Build Insights
C++ Build Insights is a collection of tools that collect data about your C++ builds and present it in a format that can help you answer common questions, like:
- Are my builds sufficiently parallelized?
- What should I include in my pre-compiled header (PCH)?
- Is there a specific bottleneck I should focus on to increase my build speeds?
Last year, we integrated Build Insights into Visual Studio, letting you see details on how your #includes are affecting your builds:
We then added a Functions View for seeing the amount of time the compiler took to process specific functions:
IDE Performance
As well as the performance of your code, we continue to work on the performance of Visual Studio itself. Here are some of the highlights.
- Improved time-to-open and time-to-close
- Improved time-to-colorization
- Improved debug launch performance
Toolchain
Our toolchain for C++ spans components such as the MSVC compiler, our open-source C++ standard library implementation, and our code analysis tools.
Conformance
For conformance with the C and C++ standards, we added support for C11 atomics and threads. We also extended our C++20 support to C++/CLI projects. We also shipped the standard library modules which are available in both C++23 mode and C++20 mode (the latter is a cross-vendor extension).
You can see the STL changelog for full details of our advances on our open-source standard library. You can also see the live STL Status Chart to see where we’re at for standards conformance. At the time of writing, only 8 standard library features remain for C++23 conformance. Thank you to everyone who contributed features in the last year! Please continue to file issues and create pull requests on the GitHub repository; this is very much a community project.
We also open-sourced the IFC SDK for C++ Modules, which provides an interface for interacting with IFC files. IFC is an on-disk binary format which stores a representation of C++ source code for machine consumption. It was designed to implement C++ Modules, but can be used for other tools which require information about C++ code and don’t want to integrate a full C++ parser. The Microsoft Office Word codebase began adopting header units with MSVC, which you can read about in Integrating C++ header units into Office using MSVC.
Finally, we wrote extensive documentation for C++20 Ranges.
Code Performance
We’ve been working on the MSVC backend to improve code generation so that your C and C++ code runs as fast as possible. We’ve introduced new optimizations for ARM64 (particularly the auto-vectorizer for NEON instructions) as well as ones which will benefit all architectures (e.g. optimizations across basic blocks and vectorized loops). We also improved debug build performance by introducing new inlining controls for named type casts (like std::move and std::forward). Here are some blog posts which describe some of the bigger changes we’ve made in the past year:
- Improved debug build performance
- ARM64 optimizations
- Machine-independent optimizations
- More ARM64 optimizations
- Even more ARM64 optimizations!
Code Safety
Code safety has been one of our team’s key focuses for the past several years. In addition to improvements to our Address Sanitizer support and static analysis tools, we produced a set of guidelines on how to build reliable and secure C++ programs. This is a section-by-section companion to the United States government publication NISTIR 8397: Guidelines on Minimum Standards for Developer Verification of Software.
Here are blog posts on some of the key improvements we made:
- Key Events for use-after-move
- High-Confidence Lifetime Checks
- Several code analysis improvements
- Address Sanitizer support for std::string
- Address Sanitizer continue_on_error mode
- Address Sanitizer Runtime Unification
vcpkg
vcpkg is our free, cross-platform package manager for C and C++. Here are some of the main advancements we made in the last year:
- vcpkg Shipped with Visual Studio
- Documentation moved to Microsoft Learn
- Integration with the GitHub Dependency Graph
- Android tested triplets
- Default triplet is now detected from host
Send us your feedback!
The comments below are open for us to track any requests. You can also find us on Twitter (@VisualC) or via email at visualcpp@microsoft.com. To open a bug, please see Visual Studio Feedback. We look forward to another year of C++!
Are there plans to improve Profile-Guided Implementation (PGO) in MSVC? Also, it would be really nice to get answers to my questions about PGO implementation in MSVC: https://developercommunity.visualstudio.com/t/Multiple-questions-about-Profile-Guided-/10537677
Thanks in advance!
While it has been a great year for Visual C++ improvements, I would like to remark that the best way to use C++ to develop Windows applications in 2024, seems to be via native libraries being called from .NET applications, or React Native.
Neither MFC nor XAML with C++/WinRT alongside COM/IDL authoriting are that great as developer experience, due to lack of Visual Studio tooling improvements, and lack of public roadmap.
I’ve not done C++ for years and years but aren’t the first two at least dead in terms of further development? I certainly wouldn’t expect to see any tooling improvements for MFC for example.