DiAttributes 1.1.0

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

// Install DiAttributes as a Cake Tool
#tool nuget:?package=DiAttributes&version=1.1.0

DiAttributes

Super-small and super-simple library for registering classes with the ASP.NET Core IServiceCollection using attributes.

GitHub: https://github.com/tobysmith568/di-attributes NuGet: https://www.nuget.org/packages/DiAttributes/

Scoped, Transient, and Singleton

Classes can be registered as any of these three types of dependency via the respective attributes:

[Scoped]
public class MyService
{
  
}

This is the equivilent of having the following in your Startup.cs:

services.Scoped<MyService>();

You can also pass in a type as an argument to register the class against:

public interface IMyService
{
  
}

[Scoped(typeof(IMyService))]
public class MyService : IMyService
{
  
}

This is the equivilent of having the following in your Startup.cs:

services.Scoped<IMyService, MyService>();

The use of these attributes will require you to add the following line to your Startup.cs file:

services.RegisterDiAttributes();

Configuration

Classes can be automatically bound to sections of your app's configuration using the Configuration attribute.

If your appsettings.json looks like this:

{
  "Outer": {
    "Inner": {
      "MySetting": "My Value"
    }
  }
}

Then you can bind a class to the Inner object and register it with the IServiceCollection like this:

[Configuration("Outer:Inner")]
public class MyInnerOptions
{
  public string MySetting { get; set; }
}

To use this attribute you will require need to pass an ICollection to the RegisterDiAttributes call in your Startup.cs file:

services.RegisterDiAttributes(Configuration);
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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.

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
1.2.0 463 1/26/2022
1.1.1 313 10/24/2021
1.1.0 280 10/24/2021
1.0.3 361 9/26/2021
1.0.2 375 9/26/2021
1.0.0 324 9/26/2021