How to integrate the Windows 8 SDK with Visual Studio 2012

According to the documentation: http://msdn.microsoft.com/en-us/windows/desktop/hh852363.aspx

By removing the command line environment, the Windows SDK no longer sends the following components:

Windows SDK Toolkit

Visual C ++ and C Runtime Compilers (CRT)

Windows SDK Configuration Tool

If the Windows SDK configuration tool is removed, is there an easy way to update paths? I understand that I can manually update Microsoft.Cpp.Win32.user.props (and other property pages), but I was hoping for an easier way than hunting for everything. Maybe I'm missing something obvious.

+4
source share
1 answer

Visual Studio 2012 already ships with the Windows 8.0 SDK and is used whenever you build using the "v110" platform toolkit. As long as you install VS 2012 Express for Windows Desktop or VS 2012 Pro or later, you have the full SDK for Windows 8.0. And in fact, with the VS 2012 update, you have the Windows 7.1A SDK, and also when using the v110_xp platform toolkit.

Similarly, if you have Visual Studio 2013, you have the SDK for Windows 8.1.

The "manual" part appears when you want to use the Windows 8.x SDK with Visual Studio 2010 or the Windows 8.1 SDK with Visual Studio 2012. See this and this blog post.

+1
source

All Articles