Skip to content

Commit

Permalink
Support vb and fsharp project dependencies. (#5174)
Browse files Browse the repository at this point in the history
  • Loading branch information
imcarolwang committed Jun 20, 2023
1 parent 2b89702 commit 5b5a784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dotnet-svcutil/lib/src/Shared/ProjectDependency.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ internal class ProjectDependency : IComparable<ProjectDependency>
public const string NetStandardLibraryPackageID = "NETStandard.Library";

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

/// <summary>
Expand Down

0 comments on commit 5b5a784

Please sign in to comment.