-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprepare.bat
24 lines (22 loc) · 1.06 KB
/
prepare.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@echo off
@REM set files="..\..\StrategyUtilities\StrategyUtilitiesClass.cs"
@REM set files=%files%;"..\..\Strategies\AdaptiveRandomStrategy.cs"
@REM set files=%files%;"..\..\Strategies\MixedStrategy.cs"
@REM set files=%files%;"..\..\Strategies\SearchStrategy.cs"
@REM set files=%files%;"..\..\Strategies\SmartRandomStrategy.cs"
@REM set files=%files%;"..\..\Strategies\StupidShortWordsStrategy.cs"
set files="ProductionsGameLauncher\bin\Debug\GUIStrategy.dll"
set files=%files%;"ProductionsGameLauncher\bin\Debug\ProductionsGame.dll"
set files=%files%;"ProductionsGameLauncher\bin\Debug\ProductionsGameCore.dll"
set files=%files%;"ProductionsGameLauncher\bin\Debug\ProductionsGameLauncher.exe"
set files=%files%;"ProductionsGameLauncher\bin\Debug\Strategies.dll"
set files=%files%;"ProductionsGameLauncher\bin\Debug\StrategyUtilities.dll"
if not exist "binaries" md "binaries"
for %%f in (%files%) do (
copy %%f "binaries/%%~nxf"
@REM chcp 65001
@REM cmd /d /u /c type %%f > .tmp
@REM chcp 1251
@REM cmd /d /c type .tmp >
)
set /p asd="Hit enter to continue"