1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-15 01:28:34 -05:00

don't migrate context on MySql

This commit is contained in:
RaidMax
2018-04-07 16:47:21 -05:00
parent a857c43d00
commit d5aa03d277
13 changed files with 89 additions and 84 deletions

View File

@ -1,7 +1,16 @@
set SolutionDir=%1
set SolutionDir=%1
set ProjectDir=%2
set TargetDir=%3
if not exist "%ProjectDir%LibSQLCE\x86" (
md "%TargetDir%x86" xcopy /y "%ProjectDir%LibSQLCE\x86" "%TargetDir%x86\"
)
if not exist "%TargetDir%x86" (
echo "Copying SQLCe binaries"
md "%TargetDir%x86"
xcopy /y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%TargetDir%x86\"
)
if not exist "%TargetDir%Plugins" (
echo "Making plugin dir"
md "%TargetDir%Plugins"
)
xcopy /y "%SolutionDir%Build\Plugins" "%TargetDir%Plugins\"

View File

@ -2,5 +2,8 @@ set SolutionDir=%1
set ProjectDir=%2
set TargetDir=%3
xcopy /Y "%SolutionDir%BUILD\Plugins" "%SolutionDir%Publish\Plugins\"
xcopy /Y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%SolutionDir%Publish\x86\"
if "TargetDir" == "*Undefined*" (
echo "Copying extra files to publish dir"
xcopy /Y "%SolutionDir%BUILD\Plugins" "%SolutionDir%Publish\Plugins\"
xcopy /Y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%SolutionDir%Publish\x86\"
)

View File

@ -1,10 +1,3 @@
set SolutionDir=%1
set SolutionDir=%1
set ProjectDir=%2
if not exist "%SolutionDir%BUILD" (
mkdir "%SolutionDir%BUILD"
)
if not exist "%SolutionDir%BUILD\userraw\scripts" (
mkdir "%SolutionDir%BUILD\userraw\scripts"
)
set TargetDir=%3