feat: create request projects for basic CQRS
All checks were successful
default / dotnet-default-workflow (push) Successful in 2m0s

This commit is contained in:
Louis Seubert 2026-05-08 20:26:26 +02:00
commit e1e02c44a0
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
190 changed files with 12235 additions and 0 deletions

View file

@ -0,0 +1,15 @@
[*.{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
# disable IDE0005: Unnecessary using directive
dotnet_diagnostic.IDE0005.severity = none
# disable IDE0390: Method can be made synchronous
dotnet_diagnostic.IDE0390.severity = none
# disable IDE0391: Method can be made synchronous
dotnet_diagnostic.IDE0391.severity = none