A mono-repo containing a collection of C# projects.
|
All checks were successful
deploy / deploy (push) Successful in 1m39s
- Fixed various NuGet package refactoring - Added OpenApi to MfGames.Identifiers to keep the versioning straight - Updated generated templates to handle OpenApi changes |
||
|---|---|---|
| .config | ||
| .forgejo/workflows | ||
| docs | ||
| examples | ||
| news | ||
| src | ||
| tests | ||
| .editorconfig | ||
| .envrc | ||
| .gitattributes | ||
| .gitignore | ||
| .prettierignore | ||
| CODE_OF_CONDUCT.md | ||
| DCO.md | ||
| flake.lock | ||
| flake.nix | ||
| Justfile | ||
| LICENSE.md | ||
| MfGames.sln | ||
| MfGames.sln.DotSettings | ||
| NuGet.Config | ||
| README.md | ||
MfGames .NET Libraries
This monorepo is the collection of all Moonfire Games's libraries for languages supported by the Common Intermediate Language (CIL), also known as .NET and C#. Some of these libraries have roots back into development since 2001 and they have gone through a number of iterations.
Documentation
The documentation for the entire project can be found in the ./docs/ folder of this project, but below are some notable links are:
- MfGames.Gallium - A simplified Entity-Component-System (ECS) modeled after LINQ methods calls and suitable for environment where ease of use is more critical than performance.
- MfGames.Nitride - A flexible, configuration-as-code, static site generator build on top of MfGames.Gallium.
Installing Packages
These packages are not available on NuGet.org, but are available through the MfGames package register for this project. The best way to use them is to configure the NuGet.config file in the root of the project.
<!-- NuGet.Config --
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="mfgames.com" value="https://src.mfgames.com/api/packages/mfgames-cil/nuget/index.json" protocolVersion="3" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="mfgames.com">
<package pattern="MfGames.*" />
</packageSource>
</packageSourceMapping>
</configuration>