moved build events to batch files
This commit is contained in:
parent
164f121d22
commit
d8a7095906
2
SharedLibrary/BuildScripts/AfterPublish.bat
Normal file
2
SharedLibrary/BuildScripts/AfterPublish.bat
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
xcopy /Y "%1BUILD\Plugins" "%1Publish\Plugins\"
|
||||||
|
xcopy /Y "%1\SharedLibrary\LibSQLCe\x86" "%1Publish\x86\"
|
9
SharedLibrary/BuildScripts/PostBuild.bat
Normal file
9
SharedLibrary/BuildScripts/PostBuild.bat
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
set SolutionDir=%1
|
||||||
|
set ProjectDir=%2
|
||||||
|
set TargetDir=%3
|
||||||
|
|
||||||
|
if not exist "%TargetDir%x86" (
|
||||||
|
echo "Copying SQLCe binaries"
|
||||||
|
md "%TargetDir%x86"
|
||||||
|
xcopy /y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%TargetDir%x86\"
|
||||||
|
)
|
2
SharedLibrary/BuildScripts/PostPublish.bat
Normal file
2
SharedLibrary/BuildScripts/PostPublish.bat
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
xcopy /Y "%1BUILD\Plugins" "%1Publish\Plugins\"
|
||||||
|
xcopy /Y "%1\SharedLibrary\LibSQLCe\x86" "%1Publish\x86\"
|
13
SharedLibrary/BuildScripts/PreBuild.bat
Normal file
13
SharedLibrary/BuildScripts/PreBuild.bat
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
set SolutionDir=%1
|
||||||
|
set ProjectDir=%2
|
||||||
|
set TargetDir=%3
|
||||||
|
|
||||||
|
if not exist "%SolutionDir%BUILD" (
|
||||||
|
echo "Making build dir"
|
||||||
|
mkdir "%SolutionDir%BUILD"
|
||||||
|
)
|
||||||
|
|
||||||
|
if not exist "%SolutionDir%BUILD\userraw\scripts" (
|
||||||
|
echo "Making userraw dir"
|
||||||
|
mkdir "%SolutionDir%BUILD\userraw\scripts"
|
||||||
|
)
|
7
WebfrontCore/BuildScripts/PostBuild.bat
Normal file
7
WebfrontCore/BuildScripts/PostBuild.bat
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
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\"
|
||||||
|
)
|
6
WebfrontCore/BuildScripts/PostPublish.bat
Normal file
6
WebfrontCore/BuildScripts/PostPublish.bat
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
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\"
|
10
WebfrontCore/BuildScripts/PreBuild.bat
Normal file
10
WebfrontCore/BuildScripts/PreBuild.bat
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
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"
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user