From 4ff37858d76cbadc313b3aa2f24ceb6f55a62b3a Mon Sep 17 00:00:00 2001 From: Carl Berg Date: Tue, 14 Mar 2023 12:29:46 +0100 Subject: [PATCH 1/2] Updated readme --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 003fe97..58e0873 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,14 @@ var matches = new TypeScanner(typeof(IMyInterface).Assembly) .FindImplementationsOf(); ``` -## Search for implementations of a open class or interface +## Search for closed implementations of a open class or interface ```cs var matches = new TypeScanner(typeof(IMyInterface<>).Assembly) .FindClosingImplementationsOf(typeof(IMyInterface<>)); ``` + +## Search for open implementations of a open class or interface +```cs +var matches = new TypeScanner(typeof(IMyInterface<>).Assembly) + .FindOpenImplementationsOf(typeof(IMyInterface<>)); +``` From 583a58e46617b596bb61f561ae040242b2ef47ec Mon Sep 17 00:00:00 2001 From: Carl Berg Date: Tue, 14 Mar 2023 12:30:10 +0100 Subject: [PATCH 2/2] Set preview version --- ATypeScanner/ATypeScanner.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ATypeScanner/ATypeScanner.csproj b/ATypeScanner/ATypeScanner.csproj index 9e082d8..faff0bf 100644 --- a/ATypeScanner/ATypeScanner.csproj +++ b/ATypeScanner/ATypeScanner.csproj @@ -3,7 +3,7 @@ netstandard2.0 Copyright (c) 2023 Carl Berg - 0.2.0 + 0.2.0-preview.0 Carl Berg An appeasing light weight type scanner MIT