AutoCtor 2.0.0-alpha.4
See the version list below for details.
dotnet add package AutoCtor --version 2.0.0-alpha.4
NuGet\Install-Package AutoCtor -Version 2.0.0-alpha.4
<PackageReference Include="AutoCtor" Version="2.0.0-alpha.4" />
paket add AutoCtor --version 2.0.0-alpha.4
#r "nuget: AutoCtor, 2.0.0-alpha.4"
// Install AutoCtor as a Cake Addin #addin nuget:?package=AutoCtor&version=2.0.0-alpha.4&prerelease // Install AutoCtor as a Cake Tool #tool nuget:?package=AutoCtor&version=2.0.0-alpha.4&prerelease
AutoCtor
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 IService _service;
}
What gets generated
partial class ExampleClass
{
public ExampleClass(IService service)
{
_service = service;
}
}
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.
[AutoConstruct]
public partial class PostConstructMethod
{
private readonly IService _service;
[AutoPostConstruct]
private void Initialize()
{
}
}
partial class PostConstructMethod
{
public PostConstructMethod(IService service)
{
_service = service;
Initialize();
}
}
Post constructor methods can also take parameters. These parameters will be passed in from the constructor.
public partial class PostConstructMethodWithParameters
{
private readonly IService _service;
[AutoPostConstruct]
private void Initialize(IInitialiseService initialiseService)
{
}
}
partial class PostConstructMethodWithParameters
{
public PostConstructMethodWithParameters(IService service, IInitialiseService initialiseService)
{
_service = service;
Initialize(initialiseService);
}
}
More examples
You can also initialize readonly fields, and AutoCtor will not include them in the constructor.
[AutoConstruct]
public partial class ClassWithPresetField
{
private readonly IService _service;
private readonly IList<string> _list = new List<string>();
}
partial class ClassWithPresetField
{
public ClassWithPresetField(IService service)
{
_service = service;
// 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 IService _service;
}
partial class ClassWithBase
{
public ClassWithBase(IAnotherService anotherService, IService service) : base(anotherService)
{
_service = service;
}
}
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:
- Define the MSBuild constant
AUTOCTOR_EMBED_ATTRIBUTES
. This ensures the attributes are embedded in your project. - 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
Product | Versions 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. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on AutoCtor:
Repository | Stars |
---|---|
LykosAI/StabilityMatrix
Multi-Platform Package Manager for Stable Diffusion
|
Version | Downloads | Last updated |
---|---|---|
2.4.3 | 2,247 | 9/21/2024 |
2.4.2 | 2,368 | 8/10/2024 |
2.4.1 | 2,883 | 7/25/2024 |
2.4.0 | 4,836 | 5/26/2024 |
2.3.0 | 4,112 | 4/15/2024 |
2.3.0-alpha.1 | 68 | 4/9/2024 |
2.2.0 | 7,514 | 3/13/2024 |
2.2.0-alpha.2 | 64 | 3/7/2024 |
2.2.0-alpha.1 | 65 | 3/7/2024 |
2.1.1 | 3,377 | 2/6/2024 |
2.1.0 | 3,730 | 12/29/2023 |
2.1.0-rc.1 | 167 | 11/4/2023 |
2.0.1-alpha.1 | 75 | 10/4/2023 |
2.0.0 | 4,819 | 9/12/2023 |
2.0.0-alpha.4 | 1,541 | 9/4/2023 |
2.0.0-alpha.3 | 83 | 9/4/2023 |
2.0.0-alpha.1 | 181 | 9/1/2023 |
1.3.0-initialize-1 | 130 | 8/15/2023 |
1.2.0 | 1,420 | 8/4/2023 |
1.1.1 | 3,371 | 5/28/2023 |
1.1.0 | 153 | 5/27/2023 |
1.0.0 | 7,787 | 3/29/2023 |
0.9.0 | 241 | 3/15/2023 |
0.8.0 | 1,274 | 1/18/2023 |
0.7.1 | 355 | 12/26/2022 |
0.7.0 | 299 | 12/26/2022 |
0.6.1 | 1,192 | 11/21/2022 |
0.6.0 | 326 | 11/19/2022 |
0.5.0 | 1,244 | 10/6/2022 |
0.4.0 | 1,819 | 7/22/2022 |
0.3.0 | 477 | 7/12/2022 |
0.2.2 | 440 | 7/12/2022 |
0.2.1 | 455 | 7/11/2022 |
0.2.0 | 427 | 7/11/2022 |
0.1.2 | 428 | 7/9/2022 |
0.1.1 | 437 | 7/9/2022 |
0.1.0 | 500 | 7/9/2022 |