From d1204ddeccfe336079319173e4644fbf0f2883ed Mon Sep 17 00:00:00 2001 From: Sean Brogan Date: Tue, 14 May 2019 17:23:18 -0700 Subject: [PATCH] Add docs for VS 2019 support and update WDK (#71) Add docs section to support command line install of VS2019 Also update WDK to version to 17763 --- docs/CodeDevelopment/prerequisites.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/CodeDevelopment/prerequisites.md b/docs/CodeDevelopment/prerequisites.md index 0cf2f852d..5b69b7eca 100644 --- a/docs/CodeDevelopment/prerequisites.md +++ b/docs/CodeDevelopment/prerequisites.md @@ -34,10 +34,22 @@ The tools also vary by Operating System and Compiler choice. Project Mu will do ``` 2. Install from cmd line with required features (this set will change overtime). ``` cmd - C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache --installPath C:\BuildTools --add Microsoft.VisualStudio.Component.VC.CoreBuildTools --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK.17134 --add Microsoft.VisualStudio.Component.VC.Tools.ARM --add Microsoft.VisualStudio.Component.VC.Tools.ARM64 + C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache --installPath C:\BuildTools --add Microsoft.VisualStudio.Component.VC.CoreBuildTools --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK.17763 --add Microsoft.VisualStudio.Component.VC.Tools.ARM --add Microsoft.VisualStudio.Component.VC.Tools.ARM64 ``` See component list here for more options. https://docs.microsoft.com/en-us/visualstudio/install/workload-component-id-vs-build-tools?view=vs-2017 +### Visual Studio 2019 **Early Support** + +1. Download latest version of VS build Tools to c:\TEMP + ``` cmd + https://aka.ms/vs/16/release/vs_buildtools.exe + ``` +2. Install from cmd line with required features (this set will change overtime). + ``` cmd + C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache --installPath C:\BuildTools --add Microsoft.VisualStudio.Component.VC.CoreBuildTools --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK.17763 --add Microsoft.VisualStudio.Component.VC.Tools.ARM --add Microsoft.VisualStudio.Component.VC.Tools.ARM64 + ``` +See component list here for more options. https://docs.microsoft.com/en-us/visualstudio/install/workload-component-id-vs-build-tools?view=vs-2019 + ### Optional - Create an Omnicache An Omnicache is a Project Mu tool that leverages git features to speed up git update operations. This helps speed up git operations if you have multiple workspaces by using the git "--reference" feature. Omnicache is documented in the Mu Pip Environment section of this site. @@ -110,4 +122,4 @@ CI and package test scripts. Supports compiling as well as running other build ``` cmd python -m pip install --upgrade mu_build -``` \ No newline at end of file +```