Skip to content

Commit

Permalink
Consider Visual Studio 2022 when filtering by channel alias
Browse files Browse the repository at this point in the history
Fixes #102
  • Loading branch information
kzu committed Aug 10, 2021
1 parent ab333dc commit 722b2c6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/VisualStudio/VisualStudioInstanceExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ public static Sku GetSku(this VisualStudioInstance vsInstance)
"VisualStudio.16.Preview" => Channel.Preview,
"VisualStudio.16.IntPreview" => Channel.IntPreview,
"VisualStudio.16.int.main" => Channel.Main,
"VisualStudio.17.Release" => Channel.Release,
"VisualStudio.17.Preview" => Channel.Preview,
"VisualStudio.17.IntPreview" => Channel.IntPreview,
"VisualStudio.17.int.main" => Channel.Main,
_ => null,
};
}
Expand Down

0 comments on commit 722b2c6

Please sign in to comment.