Skip to content

Commit 5b5a784

Browse files
authored
Support vb and fsharp project dependencies. (#5174)
1 parent 2b89702 commit 5b5a784

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotnet-svcutil/lib/src/Shared/ProjectDependency.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ internal class ProjectDependency : IComparable<ProjectDependency>
2727
public const string NetStandardLibraryPackageID = "NETStandard.Library";
2828

2929
private static readonly IReadOnlyList<string> s_binaryExtensions = new List<string> { ".exe", ".dll" }.AsReadOnly();
30-
private static readonly IReadOnlyList<string> s_projectExtensions = new List<string> { ".csproj" }.AsReadOnly();
30+
private static readonly IReadOnlyList<string> s_projectExtensions = new List<string> { ".csproj", ".vbproj",".fsproj" }.AsReadOnly();
3131
private static readonly IReadOnlyList<string> s_exeExtensions = new List<string> { ".exe" }.AsReadOnly();
3232

3333
/// <summary>

0 commit comments

Comments
 (0)