NetEscapades.Configuration.Yaml
2.0.0
See the version list below for details.
dotnet add package NetEscapades.Configuration.Yaml --version 2.0.0
NuGet\Install-Package NetEscapades.Configuration.Yaml -Version 2.0.0
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="2.0.0" />
paket add NetEscapades.Configuration.Yaml --version 2.0.0
#r "nuget: NetEscapades.Configuration.Yaml, 2.0.0"
// Install NetEscapades.Configuration.Yaml as a Cake Addin
#addin nuget:?package=NetEscapades.Configuration.Yaml&version=2.0.0
// Install NetEscapades.Configuration.Yaml as a Cake Tool
#tool nuget:?package=NetEscapades.Configuration.Yaml&version=2.0.0
YAML configuration provider implementation to use with Microsoft.Extensions.Configuration.
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-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 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. 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. |
-
.NETFramework 4.6.1
- Microsoft.Extensions.Configuration (>= 2.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0)
- YamlDotNet (>= 6.1.2)
-
.NETFramework 4.7.2
- Microsoft.Extensions.Configuration (>= 2.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0)
- YamlDotNet (>= 6.1.2)
-
.NETStandard 2.0
- Microsoft.Extensions.Configuration (>= 2.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0)
- YamlDotNet (>= 6.1.2)
NuGet packages (35)
Showing the top 5 NuGet packages that depend on NetEscapades.Configuration.Yaml:
Package | Downloads |
---|---|
Miru
Package Description |
|
Meadow
Core .NET libraries for Wilderness Labs Meadow |
|
Silky.Core
Core components of Silky framework |
|
OpenMod.Core
Core service implementations for OpenMod |
|
Bastion.Kernel
Package Description |
GitHub repositories (12)
Showing the top 5 popular GitHub repositories that depend on NetEscapades.Configuration.Yaml:
Repository | Stars |
---|---|
real-zony/ZonyLrcToolsX
ZonyLrcToolsX 是一个能够方便地下载歌词的小软件。
|
|
featherhttp/framework
A lightweight low ceremony API for web services.
|
|
doghappy/socket.io-client-csharp
socket.io-client implemention for .NET
|
|
statiqdev/Statiq.Framework
A flexible and extensible static content generation framework for .NET.
|
|
aprilyush/EasyCMS
EasyCms基于Asp.net Core 的后台快速开发框架,内容管理系统
|
Version | Downloads | Last updated |
---|---|---|
3.1.0 | 356,498 | 4/27/2023 |
3.0.0 | 207,266 | 3/9/2023 |
2.2.0 | 1,919,017 | 2/18/2022 |
2.1.0 | 2,234,754 | 12/11/2020 |
2.0.1 | 681,248 | 4/26/2020 |
2.0.0 | 326,773 | 1/6/2020 |
1.6.0 | 1,269,116 | 12/2/2018 |
1.5.0 | 343,803 | 9/22/2018 |
1.4.0 | 50,875 | 7/17/2018 |
1.3.1 | 30,209 | 3/29/2018 |
1.3.0 | 26,635 | 9/7/2017 |
1.2.0 | 38,096 | 9/3/2016 |
1.1.0 | 1,612 | 6/29/2016 |
1.0.3 | 1,291 | 6/12/2016 |
1.0.2 | 1,380 | 6/12/2016 |
1.0.1 | 1,774 | 6/11/2016 |
Features:
* Upgrade YamlDotNet to 6.1.2 - this is a breaking change in the dependency as the YamlDotNet.Signed and YamlDotNet packages were merged
* Update supported frameworks - only supports .NET 461, .NET 472, and .NET Standard 2.0 (dropped support for 1.x)
The following values are interpreted as 'null' during parsing (as per v1.1 of the spec http://yaml.org/type/null.html)
```yaml
nullValue1: Null
nullValue2: null
nullValue3: Null
nullValue4: ~
```
Yaml is case sensitive, so be aware that the following values are NOT parsed as null.
Instead they are parsed as their string equivalent (NuLL, NUll, and empty strings)
```yaml
notNull1: NuLL
notNull2: NUll
notNull3:
notNull4: ''
```