Restarted the Project With Modern .NET#15
Merged
Conversation
This is a complete rewrite of the command line parser in modern C# and .NET 10. This will not only be a command line parser, but a CLI application framework that mirrors how ASP.NET Core works. For this reason the project was renamed to CLI.NET Core. This commit only scaffolds the rough repository layout, consisting of a read me, a license, a list of contributors, a changelog, docs, design materials, the source code, and tests. All old files that are no longer needed were deleted. Since the permissive MIT license has recently been used more and more by large corporations to take from the open source community and not give anything back, the license of this project was changed from MIT to LGPL 3.0. The LGPL still allows people to freely use the library in their own software, even for commercial projects, but making any changes to it forces the derivative work to be released under the same license, thus forcing companies to give back to the community.
The project now uses a set of linters and a code formatter to (1) find and correct problems in the code and (2) to consistently format all files. If you use Visual Studio Code to work on the project, all linters and the code formatter are configured to directly work in the code editor. A set of recommended extensions is included for the linters and the code formatter. The following tools are being used: - **CSpell**, a spell checker for code, to ensure that there are no misspellings in the code. - **MarkdownLint**, a linter for Markdown files, which ensures that the Markdown files are consistently formatted and standards are enforced. - **dprint**, an unopinionated, configurable code formatter with plugins for many languages. This code formatter is used to format Markdown, JSON, YAML, and TOML files in the project.
A new GitHub Actions Workflow was added, which runs the linters and the code formatter on every push to any branch.
Added two C# projects, one for the CLI.NET Core library and one for the sample app. Also added a solution in the new SLNX format that contains the two project. The projects are fully configured and have a custom read me.
A completely new, modern logo was designed using Claude Design. It heavily borrows from the ASP.NET Core logo, with the "C" mark and a dot. The logo is available in both light and dark mode variants in the `design/` directory and a design guide for it was created.
lecode-official
force-pushed
the
restart-project-with-modern-dotnet
branch
from
July 14, 2026 10:24
088995a to
061f68b
Compare
lecode-official
force-pushed
the
development
branch
from
July 14, 2026 12:46
09e3a85 to
de74e57
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Completely removed the old repository content and created a new setup including:
Closes issue #14.