docs: updating read mes

This commit is contained in:
D. Moonfire 2023-07-11 08:03:46 -05:00
parent 08e8fe3a24
commit 1892c49f24
9 changed files with 15 additions and 9 deletions

1
.gitignore vendored
View file

@ -12,6 +12,7 @@ obj/
.idea/
_ReSharper.Caches/
node_modules/
artifacts/
# NixOS
.direnv/

View file

@ -14,7 +14,16 @@ pipeline:
build:
image: nixpkgs/nix-flakes
commands:
- nix develop --command just build test
- nix develop --command just build
volumes:
- woodpecker-nix-store:/nix
when:
event: [manual, pull_request, push]
test:
image: nixpkgs/nix-flakes
commands:
- nix develop --command just test
volumes:
- woodpecker-nix-store:/nix
when:

View file

@ -16,7 +16,9 @@ test: restore-tools
dotnet test \
--test-adapter-path:. \
--logger:"junit;LogFilePath=../artifacts/{assembly}-test-result.xml;MethodFormat=Default;FailureBodyFormat=Verbose" \
--collect:"XPlat Code Coverage"
--collect:"XPlat Code Coverage" \
-v:q --nologo
dotnet tool run reportgenerator \
-reports:tests/*/TestResults/*/coverage.cobertura.xml \
-targetdir:./coverage \

View file

@ -1,4 +1,3 @@
# MfGames.Gallium for C#
A small Entity-Component-System (ECS) that is built around LINQ calls and `IEnumerable<Entity>` objects.

View file

@ -99,4 +99,3 @@ Gets a directory containing the type's assembly directory.
#### `FileInfo? GetFile(this Type? type)`
Gets a file representing the type's assembly's `Location` property or null.

View file

@ -1,5 +1,4 @@
MfGames.Locking CIL
===================
# MfGames.Locking CIL
This a small collection of classes that provide some simplification while working with locking in C# applications.

View file

@ -36,4 +36,3 @@ The two libraries are:
- MfGames.Markdown
- MfGames.Markdown.Gemtext

View file

@ -17,4 +17,3 @@ This library is designed with the [Unix Philosophy](https://en.wikipedia.org/wik
> Do one thing well.
It generates website HTML from a variety of sources (mostly Markdown). The core library doesn't try to wrangle Javascript or minify CSS. It doesn't have plugins for pushing up to S3 or copy files. Those are things [Webpack](https://webpack.js.org/), [Parcel](https://parceljs.org/), `scp`, or other tools specialize in.

View file

@ -1,4 +1,3 @@
# MfGames.TestSetup
An opininated setup for unit tests using Xunit, Autofac, and Serilog.