Dependency.Shelf 2.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Dependency.Shelf --version 2.1.0
NuGet\Install-Package Dependency.Shelf -Version 2.1.0
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="Dependency.Shelf" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dependency.Shelf --version 2.1.0
#r "nuget: Dependency.Shelf, 2.1.0"
#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.
// Install Dependency.Shelf as a Cake Addin
#addin nuget:?package=Dependency.Shelf&version=2.1.0

// Install Dependency.Shelf as a Cake Tool
#tool nuget:?package=Dependency.Shelf&version=2.1.0

Dependency Shelf

Simple static dependency injection, NOT a framework!

Methods

ShelveInstance<T>(T instance)

Attempts to put the instance passed on the shelf, if there is an instance of the same interface already shelved then the new instance is NOT shelved and the existing shelved instance persists. If T is not an interface; OnlyInterfacesExpectedException will be thrown. If the instance passed is null then; CanNotShelveNullException will be thrown.

IsShelved<T>()

Returns a bool, true if an instance of interface T is shelved, false if there is not.

RetrieveInstance<T>()

Returns the shelved instance of T, if there is not a shelved instance null is returned.

ClearInstance<T>()

Returns a bool, true if there was no instance to remove or the instance was cleared successfully, false if there is an instance but removal failed.

Clear()

Clears all instances, of any type, on the shelf.

ClearExceptions()

Clears all exceptions from the Exceptions Log.

IEnumerable<Exception> ExceptionLog()

Returns all caught exceptions held in the exceptions log.

Example

The following is an example of an injected internal class being used by another class library. The "Shelf" is global within the application domain.

ExampleGateway (Library containing common Interface)

IInjectedDependency.cs

namespace ExampleGateway
{
    public interface IInjectedDependency
    {
        void DoSomething();
    }
}

ExampleUsage (Library with a call to dependency)

ExampleUsingShelf.cs

using ExampleGateway;
using static Dependency.Shelf;
namespace ExampleUsage
{
    public class ExampleUsingShelf
    {
        private static IInjectedDependency InjectedDependency => RetrieveInstance<IInjectedDependency>();
        public static void RunSomeDependentCode()
        {
            InjectedDependency.DoSomething();
        }
    }
}

ShelfExample (Console App)

Program.cs

using ExampleUsage;
using static Dependency.Shelf;
namespace ShelfExample
{
    class Program
    {
        static void Main(string[] args)
        {
            ShelveInstance<IInjectedDependency>(new RuntimeDependency());
            ExampleUsingShelf.RunSomeDependentCode();
        }
    }
}

RuntimeDependency.cs

using System;
namespace ShelfExample
{
    internal class RuntimeDependency : IInjectedDependency
    {
        public void DoSomething() => Console.WriteLine("Done Something!");
    }
}

You can find a better example of usage here on github.

Usage is also featured in this Narcolepsy Pumpkin video (https://youtu.be/Sas78ILNyfU)

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

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
2.2.1 2,397 1/20/2022
2.1.0 303 12/5/2021
2.0.0 568 6/18/2021
1.0.0 322 3/28/2021

New: Calls Dispose for any Disposable objects when cleared from the shelf.
New: Exception Log for any caught exceptions raised during usage, includes .ClearExceptions() method