You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
291 B
13 lines
291 B
1 month ago
|
@echo off
|
||
|
SET ServerFile=../../u2china_svr_proj/MGameServer.sln
|
||
|
if exist %ServerFile% (
|
||
|
cd ./StructToClass
|
||
|
dotnet build
|
||
|
.\StructToClass.exe
|
||
|
rd /s/q "obj"
|
||
|
del /q "StructToClass.exe"
|
||
|
del /q "StructToClass.dll"
|
||
|
del /q "StructToClass.pdb"
|
||
|
del /q "StructToClass.runtimeconfig.dev.json"
|
||
|
)
|