SharpServiceCollection 0.0.6

dotnet add package SharpServiceCollection --version 0.0.6
                    
NuGet\Install-Package SharpServiceCollection -Version 0.0.6
                    
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="SharpServiceCollection" Version="0.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SharpServiceCollection" Version="0.0.6" />
                    
Directory.Packages.props
<PackageReference Include="SharpServiceCollection" />
                    
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 SharpServiceCollection --version 0.0.6
                    
#r "nuget: SharpServiceCollection, 0.0.6"
                    
#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 SharpServiceCollection@0.0.6
                    
#: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=SharpServiceCollection&version=0.0.6
                    
Install as a Cake Addin
#tool nuget:?package=SharpServiceCollection&version=0.0.6
                    
Install as a Cake Tool
Branch Status
main Dotnet 8

Installation

To install, run dotnet add package SharpServiceCollection or from Nuget

Introduction

SharpServiceCollection is a lightweight C# library that wraps the IServiceCollection interface to streamline dependency injection through attribute-based assembly scanning.

Usage

  • SharpServiceCollection scans an assembly to automatically register services in the IServiceCollection container.

  • Use one of the extension methods of IServiceCollection to perform assembly scanning.

    • AddServicesFromCurrentAssembly()
    • AddServicesFromAssembly(Assembly assembly)
    • AddServicesFromAssemblyContaining<T>()
    • AddServicesFromAssemblyContaining(Type type)

Notes:

  • SharpServiceCollection will perform lexicographical sort on the class name to register dependency when duplicates occur. For example, Foo Bar Baz will be sorted as Bar Baz Foo, If three of them are resolved by IDemoInterface, Non Try* based attributes will register the last one, which is Foo, Try* based attributes will register the first one, which is Bar
  • InstanceLifetime is an Enum with the values Singleton Scoped Transient

Unified Attribute Approach

The InjectableDependencyAttribute provides a unified approach to dependency registration with flexible resolution strategies:

Non-Generic Version
[InjectableDependency(InstanceLifetime lifetime, ResolveBy resolveBy)]
[InjectableDependency(InstanceLifetime lifetime, ResolveBy resolveBy, string key)]

ResolveBy Enum:

  • Self - Resolves the class by itself
  • ImplementedInterface - Resolves by all implemented interfaces
  • MatchingInterface - Resolves by interface with matching name (e.g., MyServiceIMyService)
  • SelfAndReplace - Same as Self but uses Add* methods (replaces existing)
  • ImplementedInterfaceAndReplace - Same as ImplementedInterface but uses Add* methods (replaces existing)
  • MatchingInterfaceAndReplace - Same as MatchingInterface but uses Add* methods (replaces existing)
Generic Version
[InjectableDependency<T>(InstanceLifetime lifetime)]
[InjectableDependency<T>(InstanceLifetime lifetime, bool replace)]
[InjectableDependency<T>(InstanceLifetime lifetime, string key)]
[InjectableDependency<T>(InstanceLifetime lifetime, bool replace, string key)]

Parameters:

  • replace: false uses TryAdd* methods, true uses Add* methods
  • key: For keyed services registration

Example with Unified Attribute Approach

public interface IUserService
{
    string GetUserInfo(int id);
}
using SharpServiceCollection.Attributes;
using SharpServiceCollection.Enums;

// Non-generic version
[InjectableDependency(InstanceLifetime.Scoped, ResolveBy.ImplementedInterface)]
public class UserService : IUserService
{
    public string GetUserInfo(int id) => $"User {id} information";
}

// Generic version
[InjectableDependency<IUserService>(InstanceLifetime.Singleton)]
public class CachedUserService : IUserService
{
    public string GetUserInfo(int id) => $"Cached User {id} information";
}

Granular Attribute Approach

  • IServiceCollection comes with Add* and TryAdd* methods. SharpServiceCollection offers the same functionality.
  • In general, it is better to use Try* based attributes.

using SharpServiceCollection.Attributes;
using SharpServiceCollection.Enums;

// The class will be resolvable by the interface specified in the generic argument
[TryResolveBy<IScopedDemoService>(InstanceLifetime.Scoped)]
[ResolveBy<IScopedDemoService>(InstanceLifetime.Scoped)]
public class ScopedDemoType : IScopedDemoService, IKeyedScopedDemoService
{
}

// The class will be resolvable by the interface specified in the generic argument and the key
[KeyedTryResolveBy<IKeyedScopedDemoService>(InstanceLifetime.Scoped, "keyed")]
[KeyedResolveBy<IKeyedScopedDemoService>(InstanceLifetime.Scoped, "keyed")]
public class ScopedDemoType : IScopedDemoService, IKeyedScopedDemoService
{
}

// The class will be resolvable by itself
[TryResolveBySelf(InstanceLifetime.Scoped)]
[ResolveBySelf(InstanceLifetime.Scoped)]
public class ScopedDependency : IScopedDependency
{
}

// This will work by convention
// The class must have to implement an interface that has the same name of the class prefixed with I
[TryResolveByMatchingInterface(InstanceLifetime.Scoped)]
[ResolveByMatchingInterface(InstanceLifetime.Scoped)]
public class ScopedDependency : IScopedDependency
{
}

// The class will be resolvable by any of the implementeed interface
[TryResolveByImplementedInterface(InstanceLifetime.Scoped)]
[ResolveByImplementedInterface(InstanceLifetime.Scoped)]
public class FooBarBaz : IFoo, IBar, IBaz
{
}

Example With Granular Attribute Approach


public interface IDemoService
{
    string Greet();
}
using SharpServiceCollection.Attributes;
using SharpServiceCollection.Enums;

[TryResolveByImplementedInterface(InstanceLifetime.Scoped)]
public class DemoService : IDemoService
{
    public string Greet()
    {
        return "Hello World!";
    }
}
using SharpServiceCollection.Extensions;

var builder = WebApplication.CreateBuilder(args);

// Current assembly will be scanned by Assembly.GetCallingAssembly()
builder.Services.AddServicesFromCurrentAssembly();

var app = builder.Build();

app.MapGet("/", (IDemoService demoService) => demoService.Greet());

app.Run();
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
0.0.6 291 9/27/2025
0.0.5 124 9/26/2025
0.0.4 560 4/6/2025