Files
C4IT-F4SD-Client/Setup_Client/CopySourceFiles.cmd
2025-11-11 11:03:42 +01:00

18 lines
444 B
Batchfile

set Cfg=Release
set Src=..\FasdDesktopUi\bin
set Src2=..\F4SD-PhoneMonitor\bin
set Dest=.\Source
del /F /S /Q %Dest%\*.*
rd /S /Q %Dest%
md %Dest%
md %Dest%\runtimes
copy /Y %Src%\%Cfg%\*.exe %Dest%
copy /Y %Src%\%Cfg%\*.exe.config %Dest%
copy /Y %Src%\%Cfg%\*.dll %Dest%
xcopy /Y /S %Src%\%Cfg%\runtimes\* %Dest%\runtimes
copy /Y %Src2%\%Cfg%\F4SD-PhoneMonitor.exe %Dest%
copy /Y %Src2%\%Cfg%\Interop.CLMgr.dll %Dest%
pause