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

fix MissingMemberInfo.UsedIn doesn't return anything #779

Merged
merged 2 commits into from
Jul 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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