Skip to content

Commit d8507ab

Browse files
author
Grathwohl, Philipp
committed
Support *.vbproj project files
1 parent 21fb94c commit d8507ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Snitch/Analysis/ProjectBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ private Project Build(
123123
}
124124
}
125125

126-
if (!projectReferencePath.EndsWith("csproj", StringComparison.OrdinalIgnoreCase) && !projectReferencePath.EndsWith("fsproj", StringComparison.OrdinalIgnoreCase))
126+
if (!projectReferencePath.EndsWith("vbproj", StringComparison.OrdinalIgnoreCase) && !projectReferencePath.EndsWith("csproj", StringComparison.OrdinalIgnoreCase) && !projectReferencePath.EndsWith("fsproj", StringComparison.OrdinalIgnoreCase))
127127
{
128128
_console.MarkupLine(string.IsNullOrWhiteSpace(tfm)
129129
? $"Skipping Non .NET Project [aqua]{project.Name}[/]"

0 commit comments

Comments
 (0)