11bb5b742e
- move progetti core di MTC in net8 a scratch (da rivedere...)
39 lines
888 B
Batchfile
39 lines
888 B
Batchfile
@echo off
|
|
echo Effettua pulizia post build: configurazione %1. directory %2
|
|
|
|
if %1 == "Release" goto Release
|
|
if %1 == "Debug" goto Debug
|
|
if %1 == "Remote_DEBUG" goto RemoteDebug
|
|
|
|
:Release
|
|
REM INIZIO eliminando i files pdb
|
|
del /S %2"*.pdb""
|
|
del /S %2"*.xml""
|
|
del /S %2"lib/*.pdb""
|
|
echo Release: eliminato pdb + xml!!!
|
|
goto END
|
|
|
|
:Debug
|
|
echo Debug: nulla da eliminare
|
|
|
|
REM copia script verso server remoto
|
|
REM ROBOCOPY . \\10.150.0.1\Steamware\IOB-WIN-NEXT-DEB /MIR
|
|
|
|
goto END
|
|
|
|
|
|
:RemoteDebug
|
|
REM copia script verso server remoto
|
|
REM echo Debug remoto: effettuo robocopy sync (verificare remote per cliente)
|
|
|
|
REM IOB-WIN-SIM
|
|
REM ROBOCOPY . \\IOB-WIN-SIMULA\Steamware\IOB-WIN-NEXT-DEB /MIR
|
|
|
|
REM IOBVPN4MACHINE
|
|
REM ROBOCOPY . \\10.51.90.5\Steamware\TestCli /MIR
|
|
ROBOCOPY bin\Remote_DEBUG\net8.0-windows10.0.17763.0 \\10.51.90.9\Steamware\TestCli\IOB-WIN-MTC /MIR
|
|
|
|
goto END
|
|
|
|
:END
|
|
echo Fatto! |