2011-06-01 19:41:24 -07:00
|
|
|
SET PACKAGEROOT=_rawPackage
|
|
|
|
SET TARGET=%PACKAGEROOT%\NzbDrone
|
2013-04-18 23:09:52 -07:00
|
|
|
SET COPY_FLAGS=/S /V /I /Y
|
|
|
|
SET DELETE_FLAGS=/Q /F /S
|
2011-05-30 19:05:39 -07:00
|
|
|
|
2012-04-13 17:57:31 -07:00
|
|
|
rd %PACKAGEROOT% /S /Q
|
2013-04-18 23:09:52 -07:00
|
|
|
del nzbdrone*.zip %DELETE_FLAGS%
|
|
|
|
del _output\FluentValidation.resources.dll %DELETE_FLAGS%
|
2011-10-26 10:35:55 -07:00
|
|
|
|
2013-01-06 19:41:17 -08:00
|
|
|
echo ##teamcity[progressMessage 'Packaging release']
|
2011-11-13 16:57:03 -08:00
|
|
|
|
2013-04-18 23:09:52 -07:00
|
|
|
xcopy ServiceHelpers\ServiceInstall\bin\Release\*.exe %TARGET%\ %COPY_FLAGS%
|
|
|
|
xcopy ServiceHelpers\ServiceUninstall\bin\Release\*.exe %TARGET%\ %COPY_FLAGS%
|
2011-05-30 19:05:39 -07:00
|
|
|
|
2013-04-18 23:09:52 -07:00
|
|
|
xcopy _output\*.* %TARGET%\ %COPY_FLAGS%
|
|
|
|
xcopy NzbDrone.Update\bin\Release\*.* %TARGET%\NzbDrone.Update\ %COPY_FLAGS%
|
2011-05-30 19:05:39 -07:00
|
|
|
|
2011-06-01 19:41:24 -07:00
|
|
|
CD %PACKAGEROOT%
|
2011-10-30 22:45:06 -07:00
|
|
|
|
2013-04-18 23:09:52 -07:00
|
|
|
del *.xml %DELETE_FLAGS%
|
|
|
|
del *.vshost.exe.* %DELETE_FLAGS%
|
2012-04-13 17:57:31 -07:00
|
|
|
|
2011-06-01 19:41:24 -07:00
|
|
|
..\Libraries\7zip\7za.exe a -tzip ..\NzbDrone.zip *
|
|
|
|
|
2013-01-06 19:41:17 -08:00
|
|
|
CD ..
|
|
|
|
|
|
|
|
echo ##teamcity[progressMessage 'Release packaged']
|