2015-07-19 13:22:50 +00:00
|
|
|
|
|
|
|
rmdir /s /q build
|
2015-07-24 19:15:08 +00:00
|
|
|
rmdir /s /q Output
|
2015-07-19 13:22:50 +00:00
|
|
|
cd src
|
|
|
|
Msbuild Jackett.sln /t:Clean,Build /p:Configuration=Release
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
xcopy src\Jackett.Console\bin\Release Build\ /e /y
|
|
|
|
copy /Y src\Jackett.Service\bin\Release\JackettService.exe build\JackettService.exe
|
|
|
|
copy /Y src\Jackett.Service\bin\Release\JackettService.exe.config build\JackettService.exe.config
|
|
|
|
copy /Y src\Jackett.Tray\bin\Release\JackettTray.exe build\JackettTray.exe
|
|
|
|
copy /Y src\Jackett.Tray\bin\Release\JackettTray.exe.config build\JackettTray.exe.config
|
2015-07-24 19:15:08 +00:00
|
|
|
copy /Y LICENSE build\LICENSE
|
|
|
|
copy /Y README.md build\README.md
|
2015-07-19 13:22:50 +00:00
|
|
|
cd build
|
|
|
|
del *.pdb
|
|
|
|
del *.xml
|
|
|
|
cd ..
|
2015-07-26 21:14:29 +00:00
|
|
|
|
|
|
|
iscc Installer.iss
|
|
|
|
|