SharpDotYaml.Extensions.Configuration
0.2.0
See the version list below for details.
dotnet add package SharpDotYaml.Extensions.Configuration --version 0.2.0
NuGet\Install-Package SharpDotYaml.Extensions.Configuration -Version 0.2.0
<PackageReference Include="SharpDotYaml.Extensions.Configuration" Version="0.2.0" />
paket add SharpDotYaml.Extensions.Configuration --version 0.2.0
#r "nuget: SharpDotYaml.Extensions.Configuration, 0.2.0"
// Install SharpDotYaml.Extensions.Configuration as a Cake Addin #addin nuget:?package=SharpDotYaml.Extensions.Configuration&version=0.2.0 // Install SharpDotYaml.Extensions.Configuration as a Cake Tool #tool nuget:?package=SharpDotYaml.Extensions.Configuration&version=0.2.0
SharpDotYaml
SharpDotYaml is a C# library designed to support reading and loading YAML files as configuration providers. The parsing is done by YamlDotNet
Features
- Load YAML files as configuration
Microsoft.Extensions.Configuration
providers
Installation
To enable SharpDotYaml configuration provider install the NuGet package:
dotnet add package SharpDotYaml.Extensions.Configuration
Usage with Microsoft.Extensions.Configuration
Here's a basic example of how to use SharpDotYaml with Microsoft.Extensions.Configuration:
Install the NuGet package:
dotnet add package SharpDotYaml.Extensions.Configuration
Create a new file at the root of your project called example.yaml
with the following contents:
EXAMPLE_VALUE: this is only a test
ExampleSettings:
Nested:
Value: this is a nested value
Update the .csproj
file for your project and add the following to include the file in the build directory:
<ItemGroup>
<None Include="example.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
Read the configuration in your project:
using Microsoft.Extensions.Configuration;
var config = new ConfigurationBuilder()
.AddYamlFile("example.yaml")
.Build();
// Read values from the configuration
Console.WriteLine("value: {0}, equals: {1}",
config["EXAMPLE_VALUE"],
config["EXAMPLE_VALUE"] == "this is only a test");
Console.WriteLine("value: {0}, equals: {1}",
config["ExampleSettings:Nested:Value"],
config["ExampleSettings:Nested:Value"] == "this is a nested value");
See also examples/SharpDotYaml.ConfigurationExample
License
SharpDotYaml is licensed under the MIT License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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 is compatible. |
.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
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 7.0.0)
- YamlDotNet (>= 13.7.1)
-
.NETStandard 2.1
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 7.0.0)
- YamlDotNet (>= 13.7.1)
-
net6.0
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 7.0.0)
- YamlDotNet (>= 13.7.1)
-
net7.0
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 7.0.0)
- YamlDotNet (>= 13.7.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on SharpDotYaml.Extensions.Configuration:
Repository | Stars |
---|---|
EventStore/EventStore
EventStoreDB, the event-native database. Designed for Event Sourcing, Event-Driven, and Microservices architectures
|
• Minor adjustments
Full changelog at https://github.com/vipentti/SharpDotYaml/blob/main/CHANGELOG.md