Skip to content

Commit

Permalink
1.0.7 private types
Browse files Browse the repository at this point in the history
  • Loading branch information
AlseinX committed Mar 12, 2019
1 parent 98a5f28 commit 4a15cec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private class FeaturesQuerier : IReadOnlyDictionary<string, IEnumerable<Type>>

public FeaturesQuerier(AssemblyManager target) => _target = target;

private IEnumerable<Type> AllTypes => _target.ProjectAssemblies.SelectMany(asm => asm.ExportedTypes);
private IEnumerable<Type> AllTypes => _target.ProjectAssemblies.SelectMany(asm => asm.DefinedTypes);

public IEnumerable<Type> this[string key] => TryGetValue(key, out var value) ? value : throw new KeyNotFoundException();

Expand Down
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<VersionPrefix>1.0.6</VersionPrefix>
<VersionPrefix>1.0.7</VersionPrefix>
<VersionSuffix/>
</PropertyGroup>

Expand Down

0 comments on commit 4a15cec

Please sign in to comment.