From c04c8da5779097bd791e256d8434e3cc1317f0d2 Mon Sep 17 00:00:00 2001 From: "Ricardo Minguez (Rido)" Date: Thu, 21 May 2020 00:33:16 -0700 Subject: [PATCH] add CMake, and GCC toolchain to VS2019 (#889) Co-authored-by: ridomin --- images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 b/images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 index 4aeee12bd..08d5e7ea2 100644 --- a/images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 +++ b/images/win/scripts/Installers/Windows2019/Install-VS2019.ps1 @@ -94,7 +94,9 @@ $WorkLoads = '--allWorkloads --includeRecommended ' + ` '--add Microsoft.VisualStudio.Workload.Python ' + ` '--remove Component.CPython3.x64 ' + ` '--add Microsoft.VisualStudio.Workload.Universal ' + ` - '--add Microsoft.VisualStudio.Workload.VisualStudioExtension' + '--add Microsoft.VisualStudio.Workload.VisualStudioExtension ' + ` + '--add Component.MDD.Linux ' + ` + '--add Component.MDD.Linux.GCC.arm' $ReleaseInPath = "Enterprise" $BootstrapperUrl = "https://aka.ms/vs/16/release/vs_${ReleaseInPath}.exe"