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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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
- Marked Option class with OptionAttribute and Configuration section key
[Option("Greet")]
public class GreetOption
{
public string Text { get; set; }
}
- 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
- 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.