feat: add generic result library
All checks were successful
default / dotnet-default-workflow (push) Successful in 55s

This commit is contained in:
Louis Seubert 2026-05-09 19:32:23 +02:00
commit 3a6c472529
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
32 changed files with 2893 additions and 1 deletions

View file

@ -0,0 +1,9 @@
[*.{cs,vb}]
# disable CA1822: Mark members as static
# -> TUnit requiring instance methods for test cases
dotnet_diagnostic.CA1822.severity = none
# disable CA1707: Identifiers should not contain underscores
dotnet_diagnostic.CA1707.severity = none
# disable IDE0060: Remove unused parameter
dotnet_diagnostic.IDE0060.severity = none