2025-03-19 18:16:39 +08:00

24 lines
440 B
Bash

#!/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