SharpConfig icon indicating copy to clipboard operation
SharpConfig copied to clipboard

An easy to use CFG/INI configuration library for .NET.

Results 10 SharpConfig issues
Sort by recently updated
recently updated
newest added

To improve naming and formatting consistency across the project, an .editorconfig file should be introduced to the solution. The code should be adapted accordingly.

code quality

For a given section, is there a way to collect all the settings not assigned to an object to feed into another object.

Giving following .ini-file and class: ```ini [FOO] SETTING= ``` ```csharp public class FOO { public string? SETTING { get; set; } } ``` Reading the file with [3.2.9.1](https://www.nuget.org/packages/sharpconfig/3.2.9.1), which was...

bug

eg. redis.conf: ![image](https://user-images.githubusercontent.com/2232794/89153944-8321d800-d598-11ea-9077-9350c5cff102.png)

enhancement

Some cfg can use more of one comment chars like BepinEx cfg and it's plugins cfg. With using SharpConfig line starting with `## it is comment` will be saved as...

enhancement

Hi, thanks for this wonderful tool. I am trying to get an array key spanned to multiple lines. Like this: ``` INI [Sources] Files = { "....File1.txt", "....File2.txt", "....File3.txt"} ```...

enhancement

Hi, thanks for your very helpful piece of software. I run into an issue with saving and parsing of multi-line strings or text. SharpConfig is part of an Unity3D project....

enhancement

I don't believe ToObject() works with TypeStringConverters, and as such - when trying to parse a flag enum value, I'm getting an error. My flag is stored in the config...