AutoCtor 0.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package AutoCtor --version 0.2.1
                    
NuGet\Install-Package AutoCtor -Version 0.2.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="0.2.1">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AutoCtor" Version="0.2.1" />
                    
Directory.Packages.props
<PackageReference Include="AutoCtor">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
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 AutoCtor --version 0.2.1
                    
#r "nuget: AutoCtor, 0.2.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.
#:package AutoCtor@0.2.1
                    
#: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=AutoCtor&version=0.2.1
                    
Install as a Cake Addin
#tool nuget:?package=AutoCtor&version=0.2.1
                    
Install as a Cake Tool

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;
    }
}
There are no supported framework assets in this 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 (4)

Showing the top 4 popular GitHub repositories that depend on AutoCtor:

Repository Stars
LykosAI/StabilityMatrix
Multi-Platform Package Manager for Stable Diffusion
moonheart/mementomori-helper
メメントモリ MementoMori 游戏助手 Game Assistant ゲームアシスタント
lokinmodar/Echoglossian
FFXIV Dialogue text translator
Haselnussbomber/HaselTweaks
A collection of quality of life tweaks and more.
Version Downloads Last Updated
3.0.0 1,802 4/29/2026
3.0.0-rc8 95 4/28/2026
3.0.0-rc7 93 4/26/2026
3.0.0-rc6 108 4/24/2026
3.0.0-rc5 93 4/23/2026
3.0.0-rc4 102 4/23/2026
3.0.0-rc3 99 4/22/2026
3.0.0-rc2 89 4/22/2026
3.0.0-rc1 95 4/22/2026
2.12.0 3,659 2/16/2026
2.11.0 175 2/14/2026
2.10.0 13,471 11/15/2025
2.8.2 7,493 10/14/2025
2.8.1 18,133 5/26/2025
2.8.0 9,488 4/22/2025
2.7.1 1,728 4/3/2025
2.7.0 722 3/29/2025
2.6.0 1,506 3/24/2025
0.2.1 598 7/11/2022
Loading failed