This is a monoRepo of open source C# Nuget packages.
Strongly-Typed appSettings.json
via source-generator
- Get it on Nuget: https://www.nuget.org/packages/NotNot.AppSettings
- A high quality example of how to write a production-capable source-generator (includes inline docs)
This project was formerly found at https://github.com/jasonswearingen/NotNot.AppSettings
- see ./src/example/ for listing of example projects using the Nuget Packages
These projects are not in Nuget yet, and likely not ready for public use
An opinionated base class library for professional project development
- Base Class Library Kitchen Sink Included
- includes a huge amount of extension methods usable in any project
- focuses on supporting projects with support for
Microsoft.Extensions.DependencyInjection
- if you don't use DI, most the library features are also found in
NotNot.Bcl.Core
- if you don't use DI, most the library features are also found in
- functionality of
NotNot.Bcl
that doesn't require platform specific features (ex: no DI)
Opinionated Code Checks not found in other OSS Analyzers
- A couple code analazyers and some examples for making more.
- Banned API's
- Task Awaited on Return
Source Generators for Godot Engine specific functionality.
- For use with the
NotNot.GodotNet
library, which is currently private because Godot doesn't properly support libraries (lib code needs to be in the same project as the propritary game) - TODO:
- Needs a mirrored copy workflow setup to be able to checkin the libcode
Asynchronous Execution Framework
- provides a Node based scafolding to allow Task based, threaded execution with builtin data safety contracts.
- This is not an ECS though it contains an Archetype based ECS
- NOTE: While this works, it is rather old, developed during the .NET5 timeframe. Currently the entire architecture is being reimagined in .NET10 terms.
- TODO:
- rework for .NET10, Godot 4.4+, (work with, but not depend on godot)
MonoRepo because:
- easier to maintain/debug multiple Nugets when they are part of the same solution (build breaks are noticeable)
- can share the same build workflows
- see
src/CommonSettings.targets
- also see
Debug
vsLocalProjectsDebug
Build Configurations for how to easily switch between nuget dev/release builds
- see
Because this repo is focused on the development of multiple Nuget projects, there are a few weird "quality of life" tweaks to aid development:
MinVer
used for nuget versioning () -LocalProjectsDebug
: used to run examples referencing the local library project source code instead of their nuget packages (useful for debugging and development)- This requires modifying
.csproj
for nuget references
- This requires modifying
see ./contrib/creating-nuget-packages.md
for some more details on the above.
A summary from TldrLegal:
MPL is a copyleft license that is easy to comply with. You must make the source code for any of your changes available under MPL, but you can combine the MPL software with proprietary code, as long as you keep the MPL code in separate files. Version 2.0 is, by default, compatible with LGPL and GPL version 2 or greater. You can distribute binaries under a proprietary license, as long as you make the source available under MPL.
See the ./LICENSE file for the license full text.