CsConfig 7.0.0

dotnet add package CsConfig --version 7.0.0
                    
NuGet\Install-Package CsConfig -Version 7.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CsConfig" Version="7.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CsConfig" Version="7.0.0" />
                    
Directory.Packages.props
<PackageReference Include="CsConfig" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CsConfig --version 7.0.0
                    
#r "nuget: CsConfig, 7.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=CsConfig&version=7.0.0
                    
Install CsConfig as a Cake Addin
#tool nuget:?package=CsConfig&version=7.0.0
                    
Install CsConfig as a Cake Tool

<< Advanced Configuration Parser API >>

Version 6.1.x

Copyright SO-SOFT

Introduction

This library allows you to easily implement a configuration file parser in your application. The implementation is very simple, enabling advanced configuration file reading while keeping references straightforward. This configuration parser also includes syntax validation for configuration files, which helps reduce the need for error handling in your application with basic settings.

Implementation Example

It can be easily implemented as follows:

	internal class Program
	{
		// Enumeration type used in the configuration
		internal enum Part
		{
			First = 0,
			Second = 2,
			Third = 5,
		};

		// User validator class in the configuration
		internal class UserValidator
		{
			// User validator method
			public string CheckMultiplsOf3(object v)
			{
				// If a value id valid, returns null, otherwise a string of an error message
				if (((int)v % 3) == 0) return null;
				else return "It must be a multiple of 3.";
			}
		}

		/// <summary>
		/// Main function
		/// </summary>
		public static void Main(string[] args)
		{
			if(args.Length < 1)
			{
				Environment.Exit(-1);
			}

			// Implementation with the SConfig class
			var config = new SConfig();
			// Add variable programmatically
			config.AddVariable("Def1000", 1000);
			// Add enumeration type programmatically
			config.AddEnumeration(typeof(Part));
			// Add user validator class object
			config.AddValidatorObject(new UserValidator());
			if (!config.Parse(args))
			{
				foreach(var error in config.Errors)
				{
					Console.WriteLine(error);
				}

				Environment.Exit(-1);
			} else
			{
				// Show all configuration variables
				foreach(var v in config.Variables)
				{
					Console.WriteLine(v.ToString());
				}

				// Get an expression result
				var v2 = config.GetExpressionResult("Section.Sub.C[\"b\"]");
				Console.WriteLine("Result : " + v2.ToString());
			}
			Environment.Exit(0);
		}
	}

Configuration Example

The following shows a flexible configuration using advanced syntax.

/** Example Configration **/

# One line comment
//One line comment
/*
 *  Multi line comment
 */

// Define enumeration
enum Color {
	Red,
	Yellow = 4,
	Green
}

// Define an integer variable
Int = 35;

// Define a float variable
Float = 50.5;

// Define a string variable
String = "Hello";

// Define a path variable
Path = '%JAVA_HOME%/bin';

// Define a enumeration variable
Enum = Color.Green;

// Define a base64 variable
Base64 = b"SGVsbG8gV29ybGQ=";

// Define a tuple variable
Tuple = (12, "ABC", 25.5);

// Define a array variable
Array = [
	"ABC",
	"DEFG",
	"HIJKL",
];

// Define a hash variable
Hash = {
	first : 1,
	second : 2.0,
	third : "3",
};

// Define a node variable
Node : {
	Int = 102;
	Float = 32.9;
	
	Section = node {
		Int = 8;
		String  = "Section";
		Items = [
			"Hello",
			"Good night",
			"Hi",
		];
	};
	
	Nodes = [
		node {
			A = "A character";
			B = "B character";
			ARRAY = [
				node {
					A = 1;
				},
				node {
					B = 5;
				}
			];
		},
		node {
			A = "First";
			C = "Second";
			ARRAY = [
				node {
					A = 10;
				},
				node {
					B = 50;
				}
			];
		},
	];
	
	Hash = {
		abc : node {
			B = "1";
		},
		def : node {
			A = "2";
			B = "5";
		}
	};
}

// Expression examples
Value1 = Int * 5 + 10;
Value2 = "{" + String + "}";
Value3 = Node.Float * Float / 7.0;
Value4 = Array[2];
Value5 = Hash["second"];
Value6 = Node.Int + Node.Section.Int;
Value7 = (Float == 50.5 ? "Ok" : "Ng");
Value8 = Node.Nodes[1].A;
Value9 = Part.Third;
Value10 = Def1000;
Value11 = Value1 < 500 ? "Less" : "Greater";

// If statement example
if(Int >= 20) {
	Value13 = "Greater";
} else {
	Value13 = "Less";
}



//----- Validator definitions -----

StringValidatorArray = [
	"Good", "Hi", "Hello"
];

validator {
	// Mandatory definition with an Int type value between 10 and 100, with a default value of 50.
	Int = int(10, 100) @ 50;
	
	// Optional definition with a Float type value of 50 or more, with a default value of 200.
	Float ? float(50.0, *) @ 200.0;
	
	// Mandatory definition with a String type value that matches the regular expression, with a default value of 'Default'.
	String = string("[a-zA-Z]+") @ "Default;";
	
	// Mandatory definition with a String type value that matches one of the StringValidatorArray elements, with a default value of 'Good'.
	String2 = string(StringValidatorArray) @ "Good";
	
	// Mandatory definition with a Path type value, with a default value of 'C:/'.
	Path = path @ "C:/";
	
	// Optional definition with an Enum type value of 'Color', with a default value of 'Color.Yellow'.
	Enum ? enum Color @ Color.Yellow;
	
	// Mandatory definition with a Base64 type value, with a default value of 'V29ybGQ='.
	Base64 = base64 @ b"V29ybGQ=";
	
	// Mandatory definition with a Tuple type value containing three elements defined below.
	Tuple = tuple(int(10, 20), string("[A-Z]+"), float);
	
	// Optional definition with an array type value consisting of String elements that match the regular expression.
	Array ? array string("[A-Z]+");
	
	// Hash value with an arbitrary definition.
	Hash = hash;
	
	// Node value with a mandatory definition, followed by the one below.
	Node = node {
		
		// Integer value with a mandatory definition, validated by a user-defined function.
		Int = int(@CheckMultiplsOf3) @ 30;
		
		Float = float @ 200.25;
		
		Section = node {
			Int ? int;
			String ? string;
			Items = array;
		};
		
		// It is node array validator
		Nodes = array node {
			A = string @ "(A)";
			B = string @ "(B)";
			C = string("[a-zA-Z\\(\\)]+") @ "(C)";
			
			ARRAY = array node {
				A = int @ 100;
				B = int @ 500;
			};
		};
		
		// It is node hash validator
		Hash = hash node {
			A = string @ "Abc";
			B = string;
		};
		
	};
	
}

License

Copyright SO-SOFT

All rights reserved.

The redistribution and use in unmodified binary form are permitted for personal or commercial use, provided the following conditions are met:

・Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,

THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.

IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES

(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)

HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,

EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
7.0.0 61 3/15/2025
6.1.10 61 3/14/2025