mirror of
https://github.com/yck1509/ConfuserEx
synced 2026-06-08 18:29:44 +00:00
5f37fe419a
Fix #131
14 lines
313 B
Batchfile
14 lines
313 B
Batchfile
@echo off
|
|
|
|
IF NOT EXIST ..\ConfuserEx.snk COPY ..\ConfuserEx_default.snk ..\ConfuserEx.snk
|
|
|
|
%windir%\microsoft.net\framework\v4.0.30319\msbuild ..\Confuser2.sln /p:Configuration=Release "/p:Platform=Any CPU"
|
|
|
|
IF %ERRORLEVEL% NEQ 0 GOTO err
|
|
|
|
7z a ConfuserEx_bin.zip -tzip @files.lst
|
|
EXIT /B 0
|
|
|
|
:err
|
|
PAUSE
|
|
EXIT /B 1 |