提交示例代码

This commit is contained in:
Bob.Song
2026-03-05 11:39:06 +08:00
commit 25958f58c3
2534 changed files with 209593 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#!/bin/bash
echo "1. Client"
echo "2. Server"
echo "3. All"
read -n 1 -p "Please select an option:" choice
echo ""
echo ""
case $choice in
1)
dotnet Fantasy.Tools.ConfigTable.dll --ExportPlatform 1
;;
2)
dotnet Fantasy.Tools.ConfigTable.dll --ExportPlatform 2
;;
3)
dotnet Fantasy.Tools.ConfigTable.dll --ExportPlatform 3
;;
*)
echo "Invalid option"
;;
esac