-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7abebac
commit f92ba96
Showing
6 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
@echo off | ||
setlocal | ||
cls | ||
|
||
set sz_exe=C:\Program Files\7-Zip\7z.exe | ||
if exist "%sz_exe%" goto build | ||
|
||
set sz_exe=C:\Program Files (x86)\7-Zip\7z.exe | ||
if exist "%sz_exe%" goto build | ||
|
||
echo 7-Zip 18.06 - 7z.exe not found | ||
pause | ||
goto:eof | ||
|
||
:build | ||
echo 7-Zip 18.06: %sz_exe% | ||
echo. | ||
echo Make sure Release and Debug are batch build. | ||
echo. | ||
pause | ||
|
||
echo. | ||
echo. | ||
|
||
cd /D "%~dp0" | ||
|
||
del /q Release_*.zip >nul 2>&1 | ||
|
||
set files="%~dp0..\bin\Release\GitNoob.Config.dll" | ||
set files=%files% "%~dp0..\bin\Release\GitNoob.exe" | ||
set files=%files% "%~dp0..\bin\Release\GitNoob.exe.config" | ||
set files=%files% "%~dp0..\bin\Release\GitNoob.Git.dll" | ||
set files=%files% "%~dp0..\bin\Release\GitNoob.Gui.Forms.dll" | ||
set files=%files% "%~dp0..\bin\Release\GitNoob.Gui.Forms.dll.config" | ||
set files=%files% "%~dp0..\bin\Release\GitNoob.Gui.Program.dll" | ||
set files=%files% "%~dp0..\bin\Release\GitNoob.ProjectTypes.dll" | ||
|
||
"%sz_exe%" a -tzip -mx7 Release_version.zip %files% | ||
"%sz_exe%" a -tzip -mx7 Release_version-debugpack.zip "%~dp0..\bin" | ||
|
||
pause |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters