Jackett/Build.bat

19 lines
611 B
Batchfile
Raw Normal View History

2015-07-19 13:22:50 +00:00
rmdir /s /q build
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
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 ..