Showing results for C++ - C++ Team Blog

Oct 13, 2016
Post comments count0
Post likes count0

C++/WinRT Available on GitHub

Eric Battalio
Eric Battalio

C++/WinRT is now available on GitHub. This is the future of the Modern C++ project and the first public preview coming officially from Microsoft. https://github.com/microsoft/cppwinrt C++/WinRT is a standard C++ language projection for the Windows Runtime implemented solely in header files. It allows you to both author and consume Windows Runtime...

Announcement
Oct 12, 2016
Post comments count0
Post likes count0

C++ Core Check code analysis is included with VS 2017

Andrew Pardoe
Andrew Pardoe

Visual Studio "15" Preview 5 now includes the C++ Core Guidelines Checkers. This means you no longer have to install the C++ Core Check package from NuGet to check your code against rules and profiles in the C++ Core Guidelines. Just configure Code Analysis to include the C++ Core Check extensions. You can configure Code Analysis in the Solution o...

C++
Oct 7, 2016
Post comments count0
Post likes count0

Compiler Tools Layout in Visual Studio 2017

Andrew Pardoe
Andrew Pardoe

点这里看中文版 This post was written by Andrew Pardoe, Mark Levine, and Iyyappa Murugandi. Thank you for your feedback! We've made some changes to the layouts based on your feedback. Update Dec 8 2016 Finding the location of a VC++ install: Some folks have asked about how to find instances of Visual C++ on a developer's machine. There's no longer...

C++
Oct 5, 2016
Post comments count1
Post likes count0

CMake support in Visual Studio

Marian Luparu
Marian Luparu

⏱ Updated on October 5, 2017 with the latest functionality included with Visual Studio 2017 15.4 Visual Studio 2017 introduces built-in support for handling CMake projects. This makes it a lot simpler to develop C++ projects built with CMake without the need to generate VS projects and solutions from the command line. This post gives you an o...

AnnouncementCMakeNew User
Oct 5, 2016
Post comments count0
Post likes count0

C++ IntelliSense Improvements – Predictive IntelliSense & Filtering

Augustin Popa
Augustin Popa

IntelliSense is one of the most commonly used features in Visual Studio. With it, developers can write code more efficiently and learn more about their codebase at the same time. In a sense, IntelliSense is both a guide and a productivity feature. We understand the importance of having a powerful IntelliSense system which displays highly relevant r...

Announcement
Oct 5, 2016
Post comments count0
Post likes count0

C++ compiler diagnostics improvements in VS “15” Preview 5

Andrew Pardoe
Andrew Pardoe

This post written by Andrew Marino and Andrew Pardoe Visual C++ in VS “15” Preview 5 now allows you to see where errors are in a line of code—the column number—as opposed to just showing the line number. As C++ has grown it’s increasingly useful to have a little more help finding your errors. Consider this somewhat contrived example: Tradition...

Announcement
Oct 5, 2016
Post comments count0
Post likes count0

Bring your C++ codebase to Visual Studio with “Open Folder”

Marian Luparu
Marian Luparu

⏱ Updated on March 06, 2017 with the latest functionality in Visual Studio 2017 RTW Welcome to Visual Studio 2017! Starting with this release, Visual Studio supports opening folders containing source code without the need to create any solutions or projects. This makes it a lot simpler to get started with Visual Studio, even if your project is no...

AnnouncementOpenFolderNew User
Jul 14, 2016
Post comments count0
Post likes count0

C++ Unit Testing Survey (Summer 2016)

Augustin Popa
Augustin Popa

Hi everyone! The Visual Studio C++ team is conducting a survey to learn more about your C++ unit testing experiences. We'll use the feedback to make improvements to Visual Studio in the future. The survey should take less than 10 minutes to complete. Take the C++ unit testing survey Thanks for your feedback! Cheers, Augustin Popa Visual C++...

Survey
Jul 12, 2016
Post comments count1
Post likes count0

Cocos2d-x Visual Studio Android Project

IanHuff - MSFT
IanHuff - MSFT

In the world of game development , Cocos2d is one of the biggest names out there. The open source Cocos2d framework has been the backbone of a vast number of top selling apps and games, provides support for a number of programming languages, and targets a massive variety of devices. Currently, Cocos2d-x (the C++ version of Cocos2d) provides start...

C++
Jul 1, 2016
Post comments count0
Post likes count0

C++ Edit and Continue in Visual Studio 2015 Update 3

Ramkumar Ramesh - MSFT
Ramkumar Ramesh - MSFT

We’ve been continuing to improve on C++ Edit and Continue (EnC) since we shipped it in Visual Studio 2015 with the default debug engine and the VC 140 toolset. We’ve addressed a fair bit of customer feedback and based on this, I’ll go over the latest developments in C++ EnC for Update 3 (download) and other clarifications in this blog post. A qu...

Announcement