sharpconfig 2.1.0
See the version list below for details.
dotnet add package sharpconfig --version 2.1.0
NuGet\Install-Package sharpconfig -Version 2.1.0
<PackageReference Include="sharpconfig" Version="2.1.0" />
paket add sharpconfig --version 2.1.0
#r "nuget: sharpconfig, 2.1.0"
// Install sharpconfig as a Cake Addin #addin nuget:?package=sharpconfig&version=2.1.0 // Install sharpconfig as a Cake Tool #tool nuget:?package=sharpconfig&version=2.1.0
SharpConfig is an easy-to-use CFG/INI configuration library for .NET.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net20 is compatible. net35 was computed. net40 was computed. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages (8)
Showing the top 5 NuGet packages that depend on sharpconfig:
Package | Downloads |
---|---|
Chuma.AlphaMS.Aliyun
初码-AlphaMS开发库-阿里云库 |
|
Etor.Infrastructure
Package Description |
|
Karpach.Remote.Commands.Base
Base class for Remote Controller commands (Karpach.Remote.Commander) |
|
EasyLOB.Extensions.Ini
EasyLOB Extensions INI |
|
SunamoIni
Work with .ini files used in Windows |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on sharpconfig:
Repository | Stars |
---|---|
micahmo/WgServerforWindows
Wg Server for Windows (WS4W) is a desktop application that allows running and managing a WireGuard server endpoint on Windows
|
|
ciribob/DCS-SimpleRadioStandalone
An open source Stand alone Radio for DCS integrating with all clickable cockpits and FC3 Aircraft
|
Version | Downloads | Last updated |
---|---|---|
3.2.9.1 | 81,772 | 5/20/2020 |
3.2.9 | 1,586 | 5/19/2020 |
3.2.8 | 107,737 | 4/9/2018 |
3.2.6.1 | 2,664 | 3/8/2018 |
3.2.6 | 2,232 | 3/4/2018 |
3.2.5 | 2,378 | 12/12/2017 |
3.2.4 | 1,721 | 12/11/2017 |
3.2.3 | 1,696 | 12/7/2017 |
3.2.1 | 1,670 | 12/6/2017 |
3.2.0 | 3,082 | 7/7/2017 |
3.1.0 | 3,759 | 3/31/2017 |
3.0.1 | 2,731 | 12/5/2016 |
3.0.0 | 1,675 | 12/4/2016 |
2.1.0 | 5,505 | 11/7/2016 |
2.0.1 | 2,199 | 9/5/2016 |
2.0.0 | 2,987 | 8/21/2016 |
1.5.6 | 5,894 | 7/12/2016 |
1.5.5 | 4,374 | 6/1/2016 |
1.5.4 | 5,160 | 4/21/2016 |
1.5.3 | 1,740 | 4/11/2016 |
1.5.2 | 2,279 | 3/22/2016 |
1.5.1 | 1,717 | 3/4/2016 |
1.5.0 | 1,677 | 3/3/2016 |
1.4.9 | 8,814 | 12/16/2015 |
1.4.8 | 2,237 | 12/4/2015 |
1.4.7 | 1,981 | 11/30/2015 |
1.4.6 | 1,965 | 11/29/2015 |
1.4.4 | 2,280 | 8/28/2015 |
1.4.3 | 4,418 | 3/31/2015 |
1.4.2 | 1,969 | 1/31/2015 |
1.4.1 | 1,765 | 1/30/2015 |
1.4.0 | 2,530 | 9/26/2014 |
1.3.0 | 2,707 | 10/30/2013 |
1.2.0 | 1,952 | 10/29/2013 |
- Better exception messages in GetValueArray().
- Fixed a potential bug in (de)serialization that caused the stream to always close after the operation.
- Removed all methods that were marked as obsolete.
- Changed the following methods of the Section class to be non-generic (@dittodhole):
- FromObject
- GetValuesFrom
- SetValuesTo
- Added a non-generic version of Section.ToObject(). (@dittodhole)
- Fixed a bug in Setting.SetValue(object) that caused a NullReferenceException to be thrown when a null object was passed in. (@dittodhole)
- Calling Setting.SetValue() with a null object is valid.
- Fixed a bug in Setting.SetValue(object[]) that caused ',' to be used as the element separator, instead of Configuration.ArrayElementSeparator.
- Configuration.Remove() and Section.Remove() are now non-throwing when trying to remove a non-existent element. Instead, they return a bool that indicates whether the specified element was removed. (issue #39)
- Removed the generic overloads of Setting.SetValue(), as they provided no benefit.
- Removed Setting.SetValue(object[]), as Setting.SetValue(object) is the same and is almost always selected in overload resolution.