ConfigTextFile 1.11.0
See the version list below for details.
dotnet add package ConfigTextFile --version 1.11.0
NuGet\Install-Package ConfigTextFile -Version 1.11.0
<PackageReference Include="ConfigTextFile" Version="1.11.0" />
paket add ConfigTextFile --version 1.11.0
#r "nuget: ConfigTextFile, 1.11.0"
// Install ConfigTextFile as a Cake Addin #addin nuget:?package=ConfigTextFile&version=1.11.0 // Install ConfigTextFile as a Cake Tool #tool nuget:?package=ConfigTextFile&version=1.11.0
A .NET library which allows you to read and write plain-text minimal syntax configuration files
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. 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-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
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net5.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ConfigTextFile:
Package | Downloads |
---|---|
ConfigTextFile.ConfigurationSource
A ConfigTextFile configuration provider for Microsoft.Extensions.Configuration |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.12.0 | 813 | 11/15/2021 | |
1.11.4 | 717 | 3/23/2021 | |
1.11.3 | 475 | 3/17/2021 | |
1.11.2 | 528 | 3/9/2021 | |
1.11.1 | 506 | 1/9/2021 | |
1.11.0 | 545 | 1/8/2021 | |
1.10.0 | 558 | 12/22/2020 | |
1.9.1 | 613 | 12/6/2020 | |
1.9.0 | 398 | 12/2/2020 | |
1.8.3 | 610 | 11/18/2020 | |
1.8.2 | 452 | 11/9/2020 | |
1.8.1 | 525 | 11/9/2020 | |
1.8.0 | 409 | 11/5/2020 | |
1.7.1 | 445 | 10/3/2020 | |
1.7.0 | 440 | 10/1/2020 | |
1.6.2 | 440 | 8/27/2020 | |
1.6.1 | 452 | 8/26/2020 | |
1.6.0 | 516 | 7/29/2020 | |
1.5.0 | 533 | 7/28/2020 | |
1.4.0 | 446 | 6/26/2020 | |
1.3.0 | 503 | 6/6/2020 | |
1.2.0 | 471 | 5/21/2020 | |
1.1.0 | 518 | 5/4/2020 | |
1.0.0 | 468 | 4/21/2020 |
- Added overloads for ReadOnlySpan<char> for the ConfigFileWriter. Of note this eliminates a string[] allocation for WriteComment(string text) when the text parameter contains newlines
- WriteComment(string text) will call the WriteComment(ReadOnlySpan<char> text) overload on .netstandard2.1 or higher
- Overloads for ReadOnlySpan<char> for FluentConfigFileWriter, and an overload for WriteArray which allows you to write array values one at a time
- Fixed not quoting Keys/Values properly in a few cases. Specific cases are...
- Keys are quoted if they start with any of " ' ` } # , start/end with whitespace, or contain any of = [ { \r \n
- Singular Values are quoted if they start with any of [ " ' `, start/end with whitespace, or contain any of \r \n
- Array Values are quoted if they start with any of " ' `, start/end with whitespace, or contain any of , ] \r \n