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
This commit is contained in:
Sean Brogan 2019-05-14 17:23:18 -07:00 коммит произвёл GitHub
Родитель 5dad176f56
Коммит d1204ddecc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -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
```
```