SourceGeneratorPower.Options.SourceGenerator 1.1.3

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

// Install SourceGeneratorPower.Options.SourceGenerator as a Cake Tool
#tool nuget:?package=SourceGeneratorPower.Options.SourceGenerator&version=1.1.3

SourceGeneratorPower.Options

SourceGeneratorPower.Options is used C# roslyn's Source Generator feature to auto inject Options class which marked by OptionAttribute. It is convenient to develop, almost no loss of performance.

Installation

dotnet add package SourceGeneratorPower.Options.Abstractions
dotnet add package SourceGeneratorPower.Options.SourceGenerator

Usages

  1. Marked Option class with OptionAttribute and Configuration section key
[Option("Greet")]
public class GreetOption
{
    public string Text { get; set; }
}
  1. appsettings.json add Greet section
{
  "Greet": {
    "Text": "Hello world!"
  }
}

Main project use IServiceCollection extension method AutoInjectOptions

// .Net 6
builder.Services.AutoInjectOptions(builder.Configuration);

// .Net 5 StartUp.cs
service.AutoInjectOptions(Configuration);

Then build solution

Changelog

v1.1.3

  1. Fix namespace conflict with global::
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

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 443 1/20/2022
1.1.2 365 1/20/2022
1.1.1 375 1/19/2022
1.1.0 444 1/19/2022
1.0.0 432 12/12/2021