9aea9e1c02
initialization should be better asynced clean up publish folder after publish added chevron hover icon for loading more penalties added T6M maps to config
18 lines
501 B
Batchfile
18 lines
501 B
Batchfile
set SolutionDir=%1
|
|
set ProjectDir=%2
|
|
set TargetDir=%3
|
|
set OutDir=%4
|
|
|
|
echo Copying dependency configs
|
|
copy "%SolutionDir%WebfrontCore\%OutDir%*.deps.json" "%TargetDir%"
|
|
copy "%SolutionDir%SharedLibaryCore\%OutDir%*.deps.json" "%TargetDir%"
|
|
|
|
if not exist "%TargetDir%Plugins" (
|
|
echo "Making plugin dir"
|
|
md "%TargetDir%Plugins"
|
|
)
|
|
|
|
xcopy /y "%SolutionDir%Build\Plugins" "%TargetDir%Plugins\"
|
|
|
|
echo Copying plugins for publish
|
|
xcopy /Y "%SolutionDir%BUILD\Plugins" "%SolutionDir%Publish\Windows\Plugins\" |