Showing archive results for 2014

Aug 19, 2014
Post comments count0
Post likes count0

The Future of Non-Static Data Member Initialization

Kangyuan Niu
Kangyuan Niu

In Visual Studio 2013 we shipped an implementation of non-static data member initialization (hereby referred to as “NSDMI”), which is a feature that allows code such as the following:class C { int n = 42; };Here, n is a non-static member of the class, and it is initialized directly in its declaration, and not via a constructor...

C++
Aug 18, 2014
Post comments count0
Post likes count0

Visual Studio “14” CTP 3 Now Available

Eric Battalio
Eric Battalio

Today we released Visual Studio "14" CTP 3 and an early build of the .NET Framework (read the announcement on the Visual Studio blog here). Grab it from the Microsoft Download Center or from MSDN subscriber downloads or save some setup time and use a ready-to-use VM in Azure.In this CTP, we continue enhancing our C/C++ standard conformance support ...

C++
Aug 18, 2014
Post comments count0
Post likes count0

Visual Studio “14” CTP 3 Now Available

Eric Battalio
Eric Battalio

Today we released Visual Studio "14" CTP 3 and an early build of the .NET Framework (read the announcement on the Visual Studio blog here). Grab it from the Microsoft Download Center or from MSDN subscriber downloads or save some setup time and use a ready-to-use VM in Azure.In this CTP, we continue enhancing our C/C++ standard conformance support ...

C++
Aug 6, 2014
Post comments count0
Post likes count0

Survey for You :)

Eric Battalio
Eric Battalio

We know a lot of you C++ developers also use other frameworks like .NET and Xamarin. If so, do you mind taking a brief survey at https://aka.ms/vsmdd? Look for us to share highlights from the last couple of surveys in the next month or so. We are still ruminating over the responses and the individual discussions we had with those of you who opted ...

C++
Aug 4, 2014
Post comments count0
Post likes count0

Bugs Fixed in Visual Studio 2013 Update 3

Eric Battalio
Eric Battalio

Visual Studio 2013 Update 3 includes a number of fixes filed through Connect: Read the release announcements by Soma and Brian Harry or learn more by checking out the Visual Studio 2013 Update 3 RTM release notes. As always, thanks to each of you for providing feedback and helping us to improve Visual C++.

C++
Aug 1, 2014
Post comments count0
Post likes count0

C++ Runtime for Sideloaded Windows 8.1 apps

Raman Sharma
Raman Sharma

A while ago we posted about how the distribution and deployment of C++ Runtime as a dependency was handled through the Windows Store. That mechanism works for apps that are themselves distributed through the Store. However, there are cases in which you need to build apps that don't ship through the Windows Store, for example enterprise apps that ar...

C++
Jul 29, 2014
Post comments count0
Post likes count0

Visual C++ Bytes Redux

Eric Battalio
Eric Battalio

Be sure to check out the third episode of the current season of VC++ Bytes, featuring demos for a slew of additional productivity features added to Visual Studio “14” CTP 2! Do you have suggestions for who we should interview? Let us know in the comments below!

C++
Jul 18, 2014
Post comments count0
Post likes count0

Using Boost Libraries in Windows Store and Phone Applications

Steven Gates
Steven Gates

Boost contains a lot of high quality cross platform C++ libraries. Some of the libraries in Boost use APIs that aren’t available in Windows Store and Phone applications. To help improve the experience Microsoft’s been working on enabling some of the Boost libraries. We’ve made improvements to the Boost build system to support targ...

C++
Jul 9, 2014
Post comments count0
Post likes count0

Building 8.1 apps (Windows Phone and Windows Store) using Visual Studio “14” CTP2

Raman Sharma
Raman Sharma

We recently released the CTP2 for Visual Studio “14”.  Through this blog post we wanted to inform you and solicit feedback about a change we have made in the way building C++ apps for down-level platforms is handled.  Everything mentioned below is relevant only for Windows Store and Windows Phone apps.  There are no chang...

C++