Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #779 from microsoft/UsedInFix
Browse files Browse the repository at this point in the history
fix MissingMemberInfo.UsedIn doesn't return anything
  • Loading branch information
Lxiamail authored Jul 10, 2019
2 parents 883066a + 0829b19 commit 8233d63
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ public class MissingMemberInfo : MissingInfo
{
private readonly HashSet<AssemblyInfo> _usedInAssemblies;

public IEnumerable<AssemblyInfo> UsedIn { get; }
public IEnumerable<AssemblyInfo> UsedIn
{
get { return _usedInAssemblies.ToList().AsReadOnly(); }
}

public int Uses
{
Expand Down

0 comments on commit 8233d63

Please sign in to comment.