From 35dab03929371cc9a9feb39a152d12ac53fc33d1 Mon Sep 17 00:00:00 2001 From: Nir Bar Date: Wed, 29 May 2024 14:26:08 +0300 Subject: [PATCH] Install VC ATL and MFC components III --- .github/workflows/github-actions-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-build.yml b/.github/workflows/github-actions-build.yml index a03ac3d..fa40eb1 100644 --- a/.github/workflows/github-actions-build.yml +++ b/.github/workflows/github-actions-build.yml @@ -48,7 +48,7 @@ jobs: - name: Install VC ATL and MFC components run: | $InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Community" - $args = ( 'modify', '--installPath', $InstallPath, '--add', 'Microsoft.VisualStudio.Component.VC.14.29.30133.ATL', '--add', 'Microsoft.VisualStudio.Component.VC.14.29.30133.ATLMFC', '--quiet', '--norestart', '--nocache' ) + $args = ( 'modify', '--installPath', $InstallPath, '--add', 'Microsoft.VisualStudio.Component.VC.ATL', '--add', 'Microsoft.VisualStudio.Component.VC.ATLMFC', '--quiet', '--norestart', '--nocache' ) $process = Start-Process -FilePath "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe" -Wait -PassThru -WindowStyle Hidden -ArgumentList $args - name: Build PanelSwWixExtension