TDiscover 0.0.0-alpha
See the version list below for details.
dotnet add package TDiscover --version 0.0.0-alpha
NuGet\Install-Package TDiscover -Version 0.0.0-alpha
<PackageReference Include="TDiscover" Version="0.0.0-alpha" />
<PackageVersion Include="TDiscover" Version="0.0.0-alpha" />
<PackageReference Include="TDiscover" />
paket add TDiscover --version 0.0.0-alpha
#r "nuget: TDiscover, 0.0.0-alpha"
#:package TDiscover@0.0.0-alpha
#addin nuget:?package=TDiscover&version=0.0.0-alpha&prerelease
#tool nuget:?package=TDiscover&version=0.0.0-alpha&prerelease
AsyncHandler.Assembly
.Net type discovery and assembly scanning made simplified.
Overview
AsyncHandler.Assembly helps simplifying type discovery overhead when searching through .Net assemblies with a bunch of helpful methods to speed up your development.
Prerequisities
The library runs on the stable release of .Net 8 and requires the SDK installed:
https://dotnet.microsoft.com/en-us/download/dotnet/8.0
Install the package
Iinstall AsyncHandler.Assembly package.
dotnet add package AsyncHandler.Assembly
Examples
Search for a derived type by its root.
using System.Reflection;
using AsyncHandler.Assembly;
public record AggregateRoot;
public record OrderAggregate : AggregateRoot;
var assembly = Assembly.GetExecutingAssembly();
var type = TDiscover.FindByAsse<AggregateRoot>(assembly);
// or typeof(AggregateRoot).FindByAsse(assembly);
Use FindByCallingAsse() to start from calling assembly all the way back to matching assembly, FindByCallingAsse() offers significant performance gains.
typeof(AggregateRoot).FindByCallingAsse(Assembly.GetCallingAssembly());
Search for a type through AppDomain, smart tricks and filters are applied to enhance the search.
public record DomainEvent;
public record OrderPlaced : DomainEvent;
TDiscover.FindByType<DomainEvent>();
To further enhance the above search, use FindByTypeName to specify the type and name as well.
public record DomainEvent;
public record OrderPlaced : DomainEvent;
public record OrderConfirmed : DomainEvent;
TDiscover.FindByTypeName<DomainEvent>("OrderPlaced");
// or typeof(DomainEvent).FindByTypeName("OrderPlaced");
Search for a type when all you have is the type name.
TDiscover.FindByTypeName("OrderPlaced");
Give us a ⭐
If you are an event sourcer and love OSS, give AsyncHandler.Assembly a star. 💜
License
This project is licensed under the terms of the MIT license.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on TDiscover:
| Package | Downloads |
|---|---|
|
EventStorage
Lightweight event sourcing framework with event storage of choice. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.0.0 | 712 | 10/10/2024 |
| 0.0.0-alpha | 172 | 10/9/2024 |