152 lines
6.7 KiB
JSON
152 lines
6.7 KiB
JSON
{
|
|
"strings": {
|
|
"en": {
|
|
"meta.title": "DotNet-Arguments",
|
|
"meta.description": "A simple and 'to-the-point' library to parse launch arguments in .NET and .NET Core applications.",
|
|
"article.subtitle": "<a href=\"https://github.com/aziascreations/DotNet-Arguments\" class=\"font-size-16\"><i class=\"fab fa-github\"></i> View on GitHub</a>",
|
|
"intro.title": "Introduction",
|
|
"intro.p1": "A simple and 'to-the-point' library to parse launch arguments in .NET and .NET Core applications.",
|
|
"intro.p2": "This library is an improved port of my <a href=\"https://github.com/aziascreations/PB-Arguments\">PB-Arguments</a> library that intended to achieve the same goals but was missing support for some features.",
|
|
"requirements.title": "Requirements",
|
|
"requirements.1": ".NET v6.0+",
|
|
"requirements.2": "C# 10.0",
|
|
"documentation.title": "Documentation",
|
|
"documentation.1": "Go to \"<a href=\"https://aziascreations.github.io/DotNet-Arguments/\">aziascreations.github.io/DotNet-Arguments/</a>\" for the HTML documentation.",
|
|
"example.title": "Basic Example",
|
|
"license.title": "License",
|
|
"links.title": "Links"
|
|
},
|
|
"fr": {
|
|
"meta.title": "DotNet-Arguments",
|
|
"meta.description": "Une petite librairie simple et efficace pour lire et interpréter les options de lancement d'un programme pour .NET et .NET Core.",
|
|
"article.subtitle": "<a href=\"https://github.com/aziascreations/DotNet-Arguments\" class=\"font-size-16\"><i class=\"fab fa-github\"></i> Voir sur GitHub</a>",
|
|
"intro.title": "Introduction",
|
|
"intro.p1": "Une petite librarie efficace qui permet de facilement et simplement interpréter et utiliser les options de lancement d'un programme en .NET et .NET Core.",
|
|
"intro.p2": "Cette librairie est une version améliorée de mon ancienne librairie <a href=\"https://github.com/aziascreations/PB-Arguments\">PB-Arguments</a> qui visait à accomplir les mêmes goals mais à laquelle il manquait quelques fonctionnalités.",
|
|
"requirements.title": "Besoins système",
|
|
"requirements.1": ".NET v6.0+",
|
|
"requirements.2": "C# 10.0",
|
|
"documentation.title": "Documentation",
|
|
"documentation.1": "Allez sur \"<a href=\"https://aziascreations.github.io/DotNet-Arguments/\">aziascreations.github.io/DotNet-Arguments/</a>\" pour consulter la documentation.",
|
|
"example.title": "Example basique",
|
|
"license.title": "Licence",
|
|
"links.title": "Liens"
|
|
}
|
|
},
|
|
"metadata": {
|
|
"template": "generic-project-readme",
|
|
"head": {
|
|
"title": "meta.title",
|
|
"description": "meta.description"
|
|
},
|
|
"opengraph": {
|
|
"title": "meta.title",
|
|
"description": "meta.description",
|
|
"type": null,
|
|
"url": null,
|
|
"image": "/resources/NibblePoker/images/content/dotnet-arguments/main.png",
|
|
"image_type": null
|
|
},
|
|
"article": {
|
|
"icon": "fad fa-puzzle-piece",
|
|
"title": "meta.title",
|
|
"subtitle": "article.subtitle",
|
|
"tags": ["library", "dotnet"]
|
|
}
|
|
},
|
|
"elements": [
|
|
{"type": "h1", "content": "intro.title"},
|
|
{"type": "paragraph", "indent": 2, "content": "intro.p1"},
|
|
{"type": "paragraph", "indent": 2, "content": "intro.p2"},
|
|
|
|
{"type": "h1", "content": "requirements.title"},
|
|
{
|
|
"type": "paragraph",
|
|
"indent": 2,
|
|
"parts": [
|
|
{"type": "raw", "content": "● ", "localize": false},
|
|
{"type": "raw", "link": "https://dotnet.microsoft.com/en-us/download/dotnet/6.0", "content": "requirements.1"},
|
|
{"type": "raw", "content": "<br>", "localize": false},
|
|
{"type": "raw", "content": "● ", "localize": false},
|
|
{"type": "raw", "content": "requirements.2"}
|
|
]
|
|
},
|
|
|
|
{"type": "h1", "content": "documentation.title"},
|
|
{"type": "paragraph", "indent": 2, "content": "documentation.1"},
|
|
|
|
{"type": "h1", "content": "example.title"},
|
|
{
|
|
"type": "container", "padding": 2, "modifiers": ["pb-0"],
|
|
"parts": [
|
|
{
|
|
"type": "code", "indent": 2,
|
|
"modifiers": ["horizontal-scroll-auto", "code-block"],
|
|
"language": "csharp", "copyable": true,
|
|
"code": [
|
|
"// Preparing options and root verb.",
|
|
"Option OptionHelp = new('h', \"help\", \"\", OptionFlags.StopsParsing);",
|
|
"Option OptionVerbose = new('v', \"verbose\", \"\", OptionFlags.Repeatable);",
|
|
"",
|
|
"Verb RootVerb = new Verb(\"\").RegisterOption(OptionHelp).RegisterOption(OptionVerbose);",
|
|
"",
|
|
"// Parsing lanch arguments",
|
|
"try {",
|
|
" ArgumentsParser.ParseArguments(RootVerb, args); // 'args' is gotten from Main().",
|
|
"} catch(ArgumentException) {",
|
|
" Console.Error.Write(\"Failed to parse the launch arguments !\");",
|
|
" RootVerb.Clear(); // Ignoring the error and simulating no launch parameters.",
|
|
"}",
|
|
"",
|
|
"// Using the results",
|
|
"if(OptionHelp.WasUsed()) {",
|
|
" Console.WriteLine(HelpText.GetFullHelpText(RootVerb, \"app.exe\"));",
|
|
"}",
|
|
"",
|
|
"if(OptionVerbose.WasUsed() && OptionVerbose.Occurrences >= 2) {",
|
|
" // We count the number of occurences to enable more logging.",
|
|
" Console.WriteLine(\"Activating super-verbose mode !\");",
|
|
"}"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
|
|
{"type": "h1", "content": "license.title"},
|
|
{
|
|
"type": "paragraph", "indent": 2, "content": "content.commons.license.mit.single",
|
|
"link": "https://github.com/aziascreations/DotNet-Arguments/blob/master/LICENSE"
|
|
},
|
|
|
|
{"type": "h1", "content": "links.title"},
|
|
{
|
|
"type": "paragraph",
|
|
"indent": 2,
|
|
"parts": [
|
|
{"type": "raw", "content": "● ", "localize": false},
|
|
{
|
|
"type": "raw", "link": "https://github.com/aziascreations/DotNet-Arguments",
|
|
"parts": [
|
|
{"type": "raw", "content": "content.commons.github"}
|
|
]
|
|
},
|
|
{"type": "raw", "content": "<br>", "localize": false},
|
|
{"type": "raw", "content": "● ", "localize": false},
|
|
{
|
|
"type": "raw", "link": "https://aziascreations.github.io/DotNet-Arguments/",
|
|
"parts": [
|
|
{"type": "raw", "content": "content.commons.doc.online"}
|
|
]
|
|
},
|
|
{"type": "raw", "content": "<br>", "localize": false},
|
|
{"type": "raw", "content": "● ", "localize": false},
|
|
{
|
|
"type": "raw", "link": "https://www.nuget.org/packages/NibblePoker.Library.Arguments",
|
|
"parts": [
|
|
{"type": "raw", "content": "content.commons.nuget"}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
} |