AutoCtor 1.1.1

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

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

AutoCtor

Build Status NuGet Status

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

NuGet packages

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

Usage

Your code

[AutoConstruct]
public partial class ExampleClass
{
    private readonly ICustomService _customService;
}

What gets generated

partial class ExampleClass
{
    public ExampleClass(ICustomService customService)
    {
        _customService = customService;
    }
}

More examples

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

[AutoConstruct]
public partial class ClassWithInitializer
{
    private readonly ICustomService _customService;
    private readonly IList<string> _list = new List<string>();
}
partial class ClassWithInitializer
{
    public ClassWithInitializer(ICustomService customService)
    {
        _customService = customService;
        // no code to set _list
    }
}

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

public abstract class BaseClass
{
    protected IAnotherService _anotherService;

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

[AutoConstruct]
public partial class ClassWithBase : BaseClass
{
    private readonly ICustomService _customService;
}
partial class ClassWithBase
{
    public ClassWithBase(IAnotherService anotherService, ICustomService customService) : base(anotherService)
    {
        _customService = customService;
    }
}

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>
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 460 4/15/2024
2.3.0-alpha.1 48 4/9/2024
2.2.0 2,652 3/13/2024
2.2.0-alpha.2 54 3/7/2024
2.2.0-alpha.1 48 3/7/2024
2.1.1 2,715 2/6/2024
2.1.0 3,333 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,749 9/12/2023
2.0.0-alpha.4 1,357 9/4/2023
2.0.0-alpha.3 67 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,223 8/4/2023
1.1.1 3,169 5/28/2023
1.1.0 127 5/27/2023
1.0.0 7,755 3/29/2023
0.9.0 217 3/15/2023
0.8.0 1,249 1/18/2023
0.7.1 325 12/26/2022
0.7.0 280 12/26/2022
0.6.1 1,165 11/21/2022
0.6.0 296 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 417 7/9/2022