Jinget.Core.DiScanner 8.0.0-preview013

Prefix Reserved
This is a prerelease version of Jinget.Core.DiScanner.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Jinget.Core.DiScanner --version 8.0.0-preview013
                    
NuGet\Install-Package Jinget.Core.DiScanner -Version 8.0.0-preview013
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Jinget.Core.DiScanner" Version="8.0.0-preview013" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Jinget.Core.DiScanner" Version="8.0.0-preview013" />
                    
Directory.Packages.props
<PackageReference Include="Jinget.Core.DiScanner" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Jinget.Core.DiScanner --version 8.0.0-preview013
                    
#r "nuget: Jinget.Core.DiScanner, 8.0.0-preview013"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Jinget.Core.DiScanner@8.0.0-preview013
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Jinget.Core.DiScanner&version=8.0.0-preview013&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Jinget.Core.DiScanner&version=8.0.0-preview013&prerelease
                    
Install as a Cake Tool

Jinget.Core.DiScanner

Using this library, you can easily register your source code dependencies automatically without the need to write repetitive and annoying codes.

Attention: This package is build based on Autofac assembly scanning.

How to Use:

Download the package from NuGet using Package Manager: Install-Package Jinget.Core.DiScanner You can also use other methods supported by NuGet. Check Here for more information.

Methods

Assembly Selector

Name Description
FromCallingAssembly Will scan for types from the calling assembly
FromExecutingAssembly Will scan for types from the currently executing assembly
FromEntryAssembly Will scan for types from the entry assembly
FromApplicationDependencies Will load and scan all runtime libraries referenced by the currently executing application
FromAssemblyDependencies Will load and scan all runtime libraries referenced by the currently specified assembly
FromDependencyContext Will load and scan all runtime libraries in the given context
FromAssemblyOf Will scan for types from the assembly of type T
FromAssemblies Will scan for types in each Assembly in assemblies

Service Type Selector

Name Description
AsSelf Registers each matching concrete type as itself
FromExecutingAssembly Will scan for types from the currently executing assembly
As Registers each matching concrete type
AsImplementedInterfaces Registers each matching concrete type as all of its implemented interfaces
AsSelfWithInterfaces Registers each matching concrete type as all of its implemented interfaces, by returning an instance of the main type
AsMatchingInterface Registers the type with the first found matching interface name. (e.g. ClassName is matched to IClassName)
UsingAttributes Registers each matching concrete type according to their ServiceDescriptorAttribute

Implementation Type Selector

Name Description
AddClasses Adds all non-abstract classes from the selected assemblies to the Microsoft.Extensions.DependencyInjection.IServiceCollection

Lifetime Selector

Name Description
WithSingletonLifetime Registers each matching concrete type with ServiceLifetime.Singleton lifetime
WithScopedLifetime Registers each matching concrete type with ServiceLifetime.Scoped lifetime
WithTransientLifetime Registers each matching concrete type with ServiceLifetime.Transient lifetime
WithLifetime Registers each matching concrete type with the specified lifetime

Samples

You can view more detailed sample by referring to Jinget.CoreDiScanner.Test project. View UnitTests

Sample 1:

Will scan for types from the calling assembly.

_services.Scan(
    s => s.FromCallingAssembly()
        .AddClasses()
        .AsImplementedInterfaces()
        .WithTransientLifetime());

The above code will scan the calling assembly and registers each matching concrete type as all of its implemented interfaces. WithTransientLifetime indicates that the services should have Transient lifetime.

Sample 2:

Will scan for types from the calling assembly.

_services.Scan(
    s => s.FromExecutingAssembly()
        .AddClasses()
        .AsImplementedInterfaces()
        .WithTransientLifetime());

The above code will scan for types from the currently executing assembly, and registers each matching concrete type as all of its implemented interfaces.

Sample 3:

_services.Scan(
    s => s.FromAssembliesOf(typeof(Sample))
        .AddClasses()
        .AsSelfWithInterfaces()
        .WithSingletonLifetime());

The above code will scan the assembly containing the Sample type and registers each matching concrete type as all of its implemented interfaces, by returning an instance of the main type

Sample 4:

_services.Scan(
    s => s.FromAssemblies(typeof(ICustomInterface).Assembly, typeof(ISelector).Assembly)
        .AddClasses()
        .AsImplementedInterfaces()
        .WithTransientLifetime());

The above code will scan for types in each assembly in assemblies, and registers each matching concrete type as all of its implemented interfaces, by returning an instance of the main type


How to install

In order to install Jinget.Core.DiScanner please refer to nuget.org

Contact Me

👨‍💻 Twitter: https://twitter.com/_jinget

📧 Email: farahmandian2011@gmail.com

📣 Instagram: https://www.instagram.com/vahidfarahmandian

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.0.54 127 11/22/2025
8.0.53 178 11/3/2025
8.0.52 178 10/13/2025
8.0.51 199 9/24/2025
8.0.50 184 9/11/2025
8.0.49 174 9/8/2025
8.0.48 157 9/8/2025
8.0.47 175 9/7/2025
8.0.46 117 8/22/2025
8.0.45 164 7/31/2025
8.0.44 144 7/31/2025
8.0.43 143 7/30/2025
8.0.42 144 7/30/2025
8.0.41 149 7/30/2025
8.0.40 138 7/30/2025
8.0.39 131 7/29/2025
8.0.38 141 7/28/2025
8.0.37 142 7/28/2025
8.0.36 159 7/28/2025
8.0.36-preview005 154 7/27/2025
8.0.35 106 7/19/2025
8.0.34 98 7/18/2025
8.0.33 186 6/29/2025
8.0.32 176 6/29/2025
8.0.31 131 6/28/2025
8.0.30 96 6/27/2025
8.0.29 104 6/27/2025
8.0.28 103 6/27/2025
8.0.27 138 6/27/2025
8.0.26 176 6/21/2025
8.0.25 175 6/15/2025
8.0.25-preview001 163 6/15/2025
8.0.24 180 5/31/2025
8.0.23 177 5/28/2025
8.0.23-preview001 173 5/28/2025
8.0.22 188 5/25/2025
8.0.21 193 5/11/2025
8.0.20 169 5/11/2025
8.0.19 174 5/11/2025
8.0.18 219 4/21/2025
8.0.17 210 4/21/2025
8.0.16 132 4/19/2025
8.0.15 267 4/13/2025
8.0.14 219 4/7/2025
8.0.13 205 4/7/2025
8.0.12 144 4/5/2025
8.0.11 242 3/9/2025
8.0.10 220 3/9/2025
8.0.9 215 3/9/2025
8.0.8 193 2/27/2025
8.0.7 180 2/27/2025
8.0.6 155 2/27/2025
8.0.5 155 2/26/2025
8.0.4 143 2/25/2025
8.0.3 158 2/24/2025
8.0.2 147 2/24/2025
8.0.1 163 2/20/2025
8.0.0 191 1/22/2025
8.0.0-preview013 235 12/19/2024
8.0.0-preview012 136 12/19/2024
8.0.0-preview011 140 12/17/2024
8.0.0-preview010 152 12/16/2024
8.0.0-preview009 146 12/15/2024
8.0.0-preview008 156 11/25/2024
8.0.0-preview007 174 11/11/2024
8.0.0-preview006 139 11/2/2024
8.0.0-preview005 129 11/2/2024
8.0.0-preview004 114 11/1/2024
8.0.0-preview003 130 11/1/2024
8.0.0-preview002 137 11/1/2024
8.0.0-preview001 129 11/1/2024
6.2.23-preview003 134 10/31/2024
6.2.23-preview002 128 10/31/2024
6.2.22 169 10/26/2024
6.2.21 151 10/26/2024
6.2.20 144 10/26/2024
6.2.19-preview037 114 10/14/2024
6.2.19-preview036 132 9/30/2024
6.2.19-preview035 148 9/10/2024
6.2.19-preview034 146 9/9/2024
6.2.19-preview033 151 9/1/2024
6.2.19-preview032 145 9/1/2024
6.2.19-preview031 144 8/31/2024
6.2.19-preview029 137 8/26/2024
6.2.19-preview028 165 8/26/2024
6.2.19-preview027 149 8/26/2024
6.2.19-preview026 180 8/21/2024
6.2.19-preview025 164 8/21/2024
6.2.19-preview024 173 8/19/2024
6.2.19-preview023 165 8/8/2024
6.2.19-preview022 162 8/8/2024
6.2.19-preview021 147 8/5/2024
6.2.19-preview020 156 8/5/2024
6.2.19-preview019 147 8/5/2024
6.2.19-preview018 133 8/3/2024
6.2.19-preview017 104 7/30/2024
6.2.19-preview016 132 7/29/2024
6.2.19-preview015 126 7/29/2024
6.2.19-preview014 119 7/26/2024
6.2.19-preview013 166 7/20/2024
6.2.19-preview012 153 7/20/2024
6.2.19-preview011 165 6/15/2024
6.2.19-preview010 170 6/14/2024
6.2.19-preview009 150 6/14/2024
6.2.19-preview008 164 6/13/2024
6.2.19-preview007 150 6/13/2024
6.2.19-preview006 139 6/13/2024
6.2.19-preview005 143 6/13/2024
6.2.19-preview004 139 6/13/2024
6.2.19-preview003 143 6/11/2024
6.2.19-preview002 145 6/8/2024
6.2.19-preview001 145 6/8/2024
6.2.18 196 6/6/2024
6.2.18-preview020 152 6/6/2024
6.2.18-preview019 150 6/6/2024
6.2.18-preview018 157 6/6/2024
6.2.18-preview017 153 6/2/2024
6.2.18-preview016 155 6/1/2024
6.2.18-preview015 168 5/28/2024
6.2.18-preview014 157 5/28/2024
6.2.18-preview013 159 5/28/2024
6.2.18-preview012 143 5/28/2024
6.2.18-preview011 169 5/26/2024
6.2.18-preview010 173 5/26/2024
6.2.18-preview009 166 5/26/2024
6.2.18-preview008 155 5/26/2024
6.2.18-preview007 188 5/22/2024
6.2.18-preview006 175 5/22/2024
6.2.18-preview005 174 5/19/2024
6.2.18-preview004 170 5/19/2024
6.2.18-preview003 149 5/19/2024
6.2.18-preview002 138 5/19/2024
6.2.17 182 5/19/2024
6.2.16 194 5/18/2024
6.2.15 202 5/18/2024
6.2.14 168 5/18/2024
6.2.13 189 5/17/2024
6.2.12 192 5/17/2024
6.2.11 197 5/17/2024
6.2.10 186 5/17/2024
6.2.9 160 5/12/2024
6.2.8 162 5/9/2024
6.2.7 147 5/9/2024
6.2.6 190 5/7/2024
6.2.5 172 4/24/2024
6.2.4 188 2/1/2024
6.2.3 162 2/1/2024
6.2.2 165 1/31/2024
6.2.1 190 1/23/2024
6.2.0 173 1/23/2024
6.2.0-preview013 148 1/19/2024