weehong / .NET Scaffold Script
0 喜欢
0 派生
5 文件
最后活跃于 3 weeks ago
Scaffold scripts and guide for creating .NET projects, including clean architecture boilerplate and shell/PowerShell helpers.
| 1 | #!/bin/bash |
| 2 | |
| 3 | # --- 0. Determine Project Name --- |
| 4 | # Grab the name of the current directory |
| 5 | PROJECT_NAME=$(basename "$PWD") |
| 6 | |
| 7 | echo "📂 Using current directory name as project name: $PROJECT_NAME" |
| 8 | |
| 9 | # --- 1. Configuration --- |
| 10 | FORMAT="slnx" # Options: "sln" or "slnx" |
上一页
下一页