Added a-frame-architecture usiung wolverine sample.

This commit is contained in:
2026-08-03 17:08:18 +02:00
parent 1b5bf4f8d4
commit 61fe59cf83
72 changed files with 3012 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
[tools]
dotnet = "10"
[tasks.restore]
description = "Restore the Project"
run = "dotnet restore"
[tasks.build]
depends = ["restore"]
description = "Build the Project"
run = "dotnet build"
[tasks.clean]
run = "fd -I \"bin|obj\" -td -X rm -r && dotnet clean"
[tasks.migrate]
usage = '''
arg "<name>" help="Migration Name"
'''
run = "dotnet ef migrations add \"${usage_name?}\" --startup-project FinancialApi --project FinancialApi.Infrastructure"