Skip to content

Commit

Permalink
Fixing net40 build
Browse files Browse the repository at this point in the history
  • Loading branch information
darkl committed Jul 19, 2018
1 parent b2a12f8 commit b18b153
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private IEnumerable<Type> GetTypesToExplore(Type interfaceType)
{
yield return interfaceType;

foreach (Type implementedInterface in interfaceType.GetTypeInfo().ImplementedInterfaces)
foreach (Type implementedInterface in interfaceType.GetInterfaces())
{
yield return implementedInterface;
}
Expand Down

0 comments on commit b18b153

Please sign in to comment.