When installing Visual Studio Professional 2017 it's easy to find and install the MSBuild component, but it only supports C#/VB. I need to be able to use MSBuild to build C++ projects as I've done in the past. According to this blog there is supposed to be a "Visual C++ Build Tools" workload, but I can't find this (I've stared at the installer for ages). Do I need to install a different edition or did something change between the 2017 RC and the actual release?
EDIT 1: If there is no way to install "Visual C++ Build Tools" how do I get MSBuild C++ support? Installing the "Desktop development with C++" workload does not include it, as far as I can tell, and there does not appear to be any individual components that provide it either. Is there a separate installer I can download?
EDIT 2: I tried using the command line installer as documented here and here, like so:
C:\Program Files (x86)\Microsoft Visual Studio\Installer>vs_installer.exe modify --installPath "C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional" --add Microsoft.VisualStudio.Workload.VCTools
This results in the installer GUI being displayed with no additional workloads or components selected (so, it's not possible to continue installing anything). I give up for now.