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 3681b4f commit 20e12e3Copy full SHA for 20e12e3
eng/scripts/InstallVisualStudio.ps1
@@ -86,7 +86,7 @@ if ("$Edition" -eq "BuildTools") {
86
87
# Channel URIs differ between VS 2022 and VS 2026+
88
# VS 2022: release, pre, intpreview
89
-# VS 2026+: stable, insiders
+# VS 2026+: stable, insiders, intpreview (canary)
90
if ("$Channel" -eq "Preview") {
91
$responseFileName += ".preview"
92
if ($vsversion -ge 18) {
@@ -130,7 +130,7 @@ if (-not $InstallPath) {
130
}
131
132
if (-not $InstallPath) {
133
- if (($vsversion -eq "17") -or ($vsversion -eq "18")) {
+ if (($vsversion -eq 17) -or ($vsversion -eq 18)) {
134
$pathPrefix = "${env:ProgramFiles}";
135
136
0 commit comments