Showing results for April 2015 - C++ Team Blog

Apr 29, 2015
0
0

Visual Studio 2015 RC Now Available!

Eric Battalio
Eric Battalio

Today Soma (and Brian and Scott) announced the availability of Visual Studio 2015 RC, Team Foundation Server 2015 and Visual Studio 2013 Update 5. They all point to the downloads, so if you are in a hurry: Please submit feedback. You C/C++ developers have never been shy about voicing your concerns; channel that energy into providing...

C++
Apr 29, 2015
0
0

Natvis support for Android debugging

Visual CPP Team
Visual CPP Team

Hopefully you’ve seen our support for debugging C++ code on Android in Visual Studio 2015. Now in our RC release we’re pleased to announce that we’ve added support for natvis files to help visualize your native types. Customers using our previous CTP versions let us know that having natvis support for common classes such as the S...

C++
Apr 29, 2015
0
0

Debugging C++ code on iOS with Visual Studio 2015

Visual CPP Team
Visual CPP Team

Following up on our previous announcement that Visual Studio added support for debugging C++ on Android we are excited to announce that we now support debugging C++ on iOS as well. Before continuing I would recommend reading the Visual Studio C++ support for iOS announcement and the instructions for how to set up your environment to enable Visual S...

C++
Apr 29, 2015
0
0

Open Sourcing Visual Studio’s GDB/LLDB Debug Engine

Visual CPP Team
Visual CPP Team

You will have seen by now that we have added support for debugging C++ on Android and debugging C++ on iOS debugging C++ on iOS from Visual Studio 2015. As part of this work, we have developed a Visual Studio debug engine that is capable of communicating with both GDB and LLDB from Visual Studio. Today we’re happy to announce that we plan to ...

C++
Apr 29, 2015
0
0

What’s new with C++ cross-platform development with VS 2015 RC

Ankit Asthana
Ankit Asthana

Continuing our investment in Visual C++ cross-platform mobile, starting with VS2015 RC (download here) we are pleased to announce support for building iOS applications using Visual Studio. Our iOS targeting story is definitely work in progress, and this feature enablement shares our current line of thinking. Over the next few releases we will ...

C++
Apr 29, 2015
0
0

More about resumable functions in C++

Raman Sharma
Raman Sharma

With the release of Visual Studio 2015 RC, we wanted to provide an update on the progress of resumable functions support in Visual C++. Since last time, we have made some changes to our experimental implementation that tracks the latest proposal (with the exception that resumable_traits and resumable_handle are called coroutine_traits and coroutine...

C++
Apr 29, 2015
0
0

Debug C++ code on Linux from Visual Studio

Marc Goodner
Marc Goodner

As you may have heard, Visual Studio 2015 introduces GDB support for Android development. The interesting thing about the capability is that because it debugs using GDB, it’s possible to adapt the implementation to debug other targets that support GDB debugging as well (e.g. Linux and Raspberry Pi). In this post I will share the steps I took ...

C++
Apr 29, 2015
0
0

Single-File IntelliSense and other IDE Improvements in VS2015

Gabriel Ha
Gabriel Ha

Hello C++ World! With the release of RC today, we've got a whole bunch of goodies in the IDE, not the least of which is refactoring as well as a really neat feature we like to call Single-File IntelliSense, where you can simply open a file (not needing a VC project) and take advantage of browsing, IntelliSense, and navigation support in VS! That'...

C++
Apr 29, 2015
1
0

MFC Dynamic Dialog Layout

Artur Laksberg
Artur Laksberg

One of the frequently requested MFC features (and by the way, thanks for the feedback and keep it coming!) is the ability to intelligently resize dialogs and their content at runtime. One approach is to intercept WM_SIZE message of the parent dialog and recalculate the size and position of the child controls accordingly. It works, but is extremely...

C++