From 183db687c05013b5ddec1a9da9426755ea33360a Mon Sep 17 00:00:00 2001 From: Chris Culy Date: Tue, 31 Oct 2023 15:07:28 -0500 Subject: [PATCH] Add required Windows SDK to Windows runner image. --- windows/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/Dockerfile b/windows/Dockerfile index 1274207..f811537 100644 --- a/windows/Dockerfile +++ b/windows/Dockerfile @@ -19,6 +19,7 @@ RUN ` --add Microsoft.VisualStudio.Workload.VCTools ^ ` --add Microsoft.VisualStudio.Component.VC.14.30.17.0.x86.x64 ^ ` --add Microsoft.VisualStudio.Component.VC.14.30.17.0.ATL ^ ` + --add Microsoft.VisualStudio.Component.Windows10SDK.19041 ^ ` --quiet --includeRecommended --norestart --nocache --wait ` && powershell -Command "if ($err = dir $Env:TEMP -Filter dd_setup_*_errors.log | where Length -gt 0 | Get-Content) { throw $err }" ` && del vs_BuildTools.exe `