Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit c1801e1

Browse files
Recognize "NuGet VS VSIX" as valid NuGet client (#681)
1 parent ced7785 commit c1801e1

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/Stats.Warehouse/Programmability/Functions/dbo.IsNuGetClient.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ BEGIN
1414
CHARINDEX('NuGet Cross-Platform Command Line', @ClientName) > 0
1515
OR CHARINDEX('NuGet Client V3', @ClientName) > 0
1616

17+
-- VS NuGet 4.6+
18+
OR CHARINDEX('NuGet VS VSIX', @ClientName) > 0
19+
1720
-- VS NuGet 2.8+
1821
OR CHARINDEX('NuGet VS PowerShell Console', @ClientName) > 0
1922
OR CHARINDEX('NuGet VS Packages Dialog - Solution', @ClientName) > 0

0 commit comments

Comments
 (0)