Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chaowlert/PrimaryConstructor

Generate primary constructor from readonly fields
https://github.com/chaowlert/PrimaryConstructor

csharp-sourcegenerator primary-constructor

Last synced: 3 months ago
JSON representation

Generate primary constructor from readonly fields

Awesome Lists containing this project

README

        

# PrimaryConstructor
Generate primary constructor from readonly fields & properties

[![NuGet](https://img.shields.io/nuget/v/PrimaryConstructor.svg)](https://www.nuget.org/packages/PrimaryConstructor)

![image](https://user-images.githubusercontent.com/5763993/97197488-4b65ad80-17e0-11eb-9eef-305ce284eb78.png)

### Get it
```
PM> Install-Package PrimaryConstructor
```

### Prerequisites

Visual Studio version 16.8 and above is required as its first version to support source generators.

### Usage

Declare class with `partial`, and annotate with `[PrimaryConstructor]`.
And then you can declare your dependencies with readonly fields.

```csharp
[PrimaryConstructor]
public partial class MyService
{
private readonly MyDependency _myDependency;

...
}
```

When compile, following source will be injected.

```csharp
partial class MyService
{
public MyService(MyDependency myDependency)
{
this._myDependency = myDependency;
}
}
```

### Rules

1. **readonly** fields & properties **without initializer** will be automatically injected.
2. if the service has based type, based type must also annotated with `PrimaryConstructor` in order to inject members from based type.
3. you can exclude members from injection by annotated with `IgnorePrimaryConstructor`.
4. you can include members to injection by annotated with `IncludePrimaryConstructor`.

### Emit generated files

Visual Studio still not fully support source generator, it sometimes shows error marker on symbols referred to the generated code.
Emitting the generated files will allow you to see the code, and also solve Visual Studio error marker problem.

To emit generated files, add following code to your `csproj` file.

```xml

$(MSBuildProjectDirectory)/generated
true





```

Please check [PrimaryConstructor.Sample.csproj](https://github.com/chaowlert/PrimaryConstructor/blob/main/PrimaryConstructor.Sample/PrimaryConstructor.Sample.csproj) for sample.