AutoCtor 2.3.0

dotnet add package AutoCtor --version 2.3.0
NuGet\Install-Package AutoCtor -Version 2.3.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="AutoCtor" Version="2.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AutoCtor --version 2.3.0
#r "nuget: AutoCtor, 2.3.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 AutoCtor as a Cake Addin
#addin nuget:?package=AutoCtor&version=2.3.0

// Install AutoCtor as a Cake Tool
#tool nuget:?package=AutoCtor&version=2.3.0

AutoCtor

Build Status NuGet Status Nuget Downloads

AutoCtor is a Roslyn Source Generator that will automatically create a constructor for your class for use with constructor Dependency Injection.

Contents

NuGet packages

https://nuget.org/packages/AutoCtor/

Usage

Your code

<a id='snippet-Basic'></a>

[AutoConstruct]
public partial class ExampleClass
{
    private readonly IService _service;
}

<sup><a href='/src/AutoCtor.Example/BasicExamples.cs#L6-L14' title='Snippet source file'>snippet source</a> | <a href='#snippet-Basic' title='Start of snippet'>anchor</a></sup>

What gets generated

<a id='snippet-BasicGeneratedCode'></a>

partial class ExampleClass
{
    public ExampleClass(IService service)
    {
        _service = service;
    }
}

<sup><a href='/src/AutoCtor.Example/BasicExamples.cs#L16-L26' title='Snippet source file'>snippet source</a> | <a href='#snippet-BasicGeneratedCode' title='Start of snippet'>anchor</a></sup>

More Features

Post constructor Initialisation

You can mark a method to be called at the end of the constructor with the attribute [AutoPostConstruct]. This method must return void.

<a id='snippet-PostConstruct'></a>

[AutoConstruct]
public partial class PostConstructMethod
{
    private readonly IService _service;

    [AutoPostConstruct]
    private void Initialize()
    {
    }
}

<sup><a href='/src/AutoCtor.Example/PostConstructExamples.cs#L6-L19' title='Snippet source file'>snippet source</a> | <a href='#snippet-PostConstruct' title='Start of snippet'>anchor</a></sup>

<a id='snippet-PostConstructGeneratedCode'></a>

partial class PostConstructMethod
{
    public PostConstructMethod(IService service)
    {
        _service = service;
        Initialize();
    }
}

<sup><a href='/src/AutoCtor.Example/PostConstructExamples.cs#L21-L32' title='Snippet source file'>snippet source</a> | <a href='#snippet-PostConstructGeneratedCode' title='Start of snippet'>anchor</a></sup>

Post constructor methods can also take parameters. These parameters will be passed in from the constructor.

<a id='snippet-PostConstructWithParameters'></a>

public partial class PostConstructMethodWithParameters
{
    private readonly IService _service;

    [AutoPostConstruct]
    private void Initialize(IInitialiseService initialiseService)
    {
    }
}

<sup><a href='/src/AutoCtor.Example/PostConstructExamples.cs#L34-L46' title='Snippet source file'>snippet source</a> | <a href='#snippet-PostConstructWithParameters' title='Start of snippet'>anchor</a></sup>

<a id='snippet-PostConstructWithParametersGeneratedCode'></a>

partial class PostConstructMethodWithParameters
{
    public PostConstructMethodWithParameters(IService service, IInitialiseService initialiseService)
    {
        _service = service;
        Initialize(initialiseService);
    }
}

<sup><a href='/src/AutoCtor.Example/PostConstructExamples.cs#L48-L59' title='Snippet source file'>snippet source</a> | <a href='#snippet-PostConstructWithParametersGeneratedCode' title='Start of snippet'>anchor</a></sup>

Argument Guards

Null guards for the arguments to the constructor can be added in 2 ways.

In your project you can add a AutoCtorGuards property.

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <AutoCtorGuards>true</AutoCtorGuards>
  </PropertyGroup>

</Project>

In each AutoConstruct attribute you can add a setting to enable/disable guards.

<a id='snippet-Guards'></a>

[AutoConstruct(GuardSetting.Enabled)]
public partial class GuardedClass
{
    private readonly Service _service;
}

<sup><a href='/src/AutoCtor.Example/GuardsExamples.cs#L5-L13' title='Snippet source file'>snippet source</a> | <a href='#snippet-Guards' title='Start of snippet'>anchor</a></sup>

<a id='snippet-GuardsGeneratedCode'></a>

partial class GuardedClass
{
    public GuardedClass(Service service)
    {
        _service = service ?? throw new ArgumentNullException(nameof(service));
    }
}

<sup><a href='/src/AutoCtor.Example/GuardsExamples.cs#L15-L25' title='Snippet source file'>snippet source</a> | <a href='#snippet-GuardsGeneratedCode' title='Start of snippet'>anchor</a></sup>

More examples

You can also initialize readonly fields, and AutoCtor will not include them in the constructor.

<a id='snippet-PresetField'></a>

[AutoConstruct]
public partial class ClassWithPresetField
{
    private readonly IService _service;
    private readonly IList<string> _list = new List<string>();
}

<sup><a href='/src/AutoCtor.Example/BasicExamples.cs#L28-L37' title='Snippet source file'>snippet source</a> | <a href='#snippet-PresetField' title='Start of snippet'>anchor</a></sup>

<a id='snippet-PresetFieldGeneratedCode'></a>

partial class ClassWithPresetField
{
    public ClassWithPresetField(IService service)
    {
        _service = service;
        // no code to set _list
    }
}

<sup><a href='/src/AutoCtor.Example/BasicExamples.cs#L39-L50' title='Snippet source file'>snippet source</a> | <a href='#snippet-PresetFieldGeneratedCode' title='Start of snippet'>anchor</a></sup>

If there is a single base constructor with parameters, AutoCtor will include that base constructor in the constructor it creates.

<a id='snippet-Inherit'></a>

public abstract class BaseClass
{
    protected IAnotherService _anotherService;

    public BaseClass(IAnotherService anotherService)
    {
        _anotherService = anotherService;
    }
}

[AutoConstruct]
public partial class ClassWithBase : BaseClass
{
    private readonly IService _service;
}

<sup><a href='/src/AutoCtor.Example/BasicExamples.cs#L52-L70' title='Snippet source file'>snippet source</a> | <a href='#snippet-Inherit' title='Start of snippet'>anchor</a></sup>

<a id='snippet-InheritGeneratedCode'></a>

partial class ClassWithBase
{
    public ClassWithBase(IAnotherService anotherService, IService service) : base(anotherService)
    {
        _service = service;
    }
}

<sup><a href='/src/AutoCtor.Example/BasicExamples.cs#L72-L82' title='Snippet source file'>snippet source</a> | <a href='#snippet-InheritGeneratedCode' title='Start of snippet'>anchor</a></sup>

Embedding the attributes in your project

By default, the [AutoConstruct] attributes referenced in your project are contained in an external dll. It is also possible to embed the attributes directly in your project. To do this, you must do two things:

  1. Define the MSBuild constant AUTOCTOR_EMBED_ATTRIBUTES. This ensures the attributes are embedded in your project.
  2. Add compile to the list of excluded assets in your <PackageReference> element. This ensures the attributes in your project are referenced, insted of the AutoCtor.Attributes.dll library.

Your project file should look like this:

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    
    <DefineConstants>AUTOCTOR_EMBED_ATTRIBUTES</DefineConstants>
  </PropertyGroup>

  
  <PackageReference Include="AutoCtor"
                    PrivateAssets="all"
                    ExcludeAssets="compile;runtime" />


</Project>

Preserving usage of the [AutoConstruct] attribute

The [AutoConstruct] attributes are decorated with the [Conditional] attribute, so their usage will not appear in the build output of your project. If you use reflection at runtime you will not find the [AutoConstruct] attributes.

If you wish to preserve these attributes in the build output, you can define the AUTOCTOR_USAGES MSBuild variable.

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    
    <DefineConstants>AUTOCTOR_USAGES</DefineConstants>
  </PropertyGroup>

  
  <PackageReference Include="AutoCtor" PrivateAssets="all" />

</Project>

Stats

Alt

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.3.0 240 4/15/2024
2.3.0-alpha.1 46 4/9/2024
2.2.0 2,458 3/13/2024
2.2.0-alpha.2 53 3/7/2024
2.2.0-alpha.1 47 3/7/2024
2.1.1 2,679 2/6/2024
2.1.0 3,304 12/29/2023
2.1.0-rc.1 145 11/4/2023
2.0.1-alpha.1 59 10/4/2023
2.0.0 4,745 9/12/2023
2.0.0-alpha.4 1,286 9/4/2023
2.0.0-alpha.3 66 9/4/2023
2.0.0-alpha.1 167 9/1/2023
1.3.0-initialize-1 113 8/15/2023
1.2.0 1,219 8/4/2023
1.1.1 3,167 5/28/2023
1.1.0 125 5/27/2023
1.0.0 7,753 3/29/2023
0.9.0 215 3/15/2023
0.8.0 1,247 1/18/2023
0.7.1 323 12/26/2022
0.7.0 278 12/26/2022
0.6.1 1,163 11/21/2022
0.6.0 294 11/19/2022
0.5.0 1,214 10/6/2022
0.4.0 1,785 7/22/2022
0.3.0 445 7/12/2022
0.2.2 419 7/12/2022
0.2.1 427 7/11/2022
0.2.0 406 7/11/2022
0.1.2 402 7/9/2022
0.1.1 409 7/9/2022
0.1.0 414 7/9/2022