consolidate CommonSecurity to Common.dll

This commit is contained in:
Alex Bezdieniezhnykh
2025-06-13 23:06:48 +03:00
parent 904bc688ca
commit 8aa2f563a4
58 changed files with 362 additions and 151 deletions
+3 -8
View File
@@ -1,24 +1,19 @@
echo Make dirs, copy init dlls
REM Save the current directory
@echo off
echo Make dirs, copy init dlls
set CURRENT_DIR=%cd%
REM Change to the parent directory of the current location
cd /d %~dp0..
REM Remove and recreate the dist-dlls and dist-azaion directories
if exist dist-dlls rmdir dist-dlls /s /q
mkdir dist-dlls
if exist dist-azaion rmdir dist-azaion /s /q
mkdir dist-azaion
if exist dist rmdir dist /s /q
mkdir dist
del "AzaionSuite.Iterative.*"
echo Copying shared libs
REM Copy the shared libs from the source location to dist-dlls
robocopy "C:\\share" "dist-dlls" "*"
REM Return to the original directory
cd /d %CURRENT_DIR%
echo Init script completed.