We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f525b4b commit 391e958Copy full SHA for 391e958
.github/workflows/install-vs-components.py
@@ -22,11 +22,13 @@
22
shell=True,
23
).strip()
24
components_to_add = ["Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL"] + (
25
- ["Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64"]
+ [
26
+ "Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM",
27
+ "Microsoft.VisualStudio.Component.VC.14.29.16.11.ATL.ARM64",
28
+ ]
29
if platform.machine() == "ARM64"
30
else []
31
)
-
32
args = (
33
"vs_installer.exe",
34
"modify",
0 commit comments