zoukankan      html  css  js  c++  java
  • 批处理 进行svn代码拉取,vs编译,dotfuscator混淆,winrar压缩

    Dotfuscator的使用:https://www.cnblogs.com/aitong/p/10684004.html

    从拉取代码,编译到最后的混淆步骤很多。这时就可以使用批处理来进行自动化。

    用到的软件:TortoiseSVN, VS2013 , Dotfuscator Professional Edition,WinRAR

    前置条件:提前使用dotfuscator进行一次混淆,并合理存放工程文件,设置混淆前后目录。

    在编译之前批处理程序会先删除原先的编译结果,这样在编译出错时会发现文件缺失。

    ::拉取svn
    "D:Program FilesTortoiseSVNinTortoiseProc.exe" /command:update /path:"D:MySVNCompile" /closeonend:1
    
    ::删除文件
    set filepath1="D:MySVNCompileMyApp1OutPutReleaseMyApp1Back.exe"
    set filepath2="D:MySVNCompileMyApp1OutPutReleaseMyApp1Front.exe"
    set filepath3="D:MySVNCompileMyApp1OutPutReleaseMyApp1Basic.dll"
    del /q %filepath1%
    del /q %filepath2%
    del /q %filepath3%
    
    ::编译
    set vspath="D:Program Files (x86)Microsoft Visual Studio 12.0Common7IDEdevenv.exe"
    set slnpath="D:MySVNCompileMyApp1MyApp1.sln"
    %vspath%   /rebuild Release  %slnpath% 
    
    ::复制文件
    set outpath1="C:Users11320DesktopMyApp1混淆eforeMyApp1Back.exe"
    set outpath2="C:Users11320DesktopMyApp1混淆eforeMyApp1Front.exe"
    set outpath3="C:Users11320DesktopMyApp1混淆eforeMyApp1Basic.dll"
    copy %filepath1% %outpath1%
    @IF %errorlevel%==1 echo "编译出错,文件不存在。"&goto End
    copy %filepath2% %outpath2%
    @IF %errorlevel%==1 echo "编译出错,文件不存在。"&goto End
    copy %filepath3% %outpath3%
    @IF %errorlevel%==1 echo "编译出错,文件不存在。"&goto End
    
    ::混淆
    set dotfuscatorpath="C:Program Files (x86)PreEmptive SolutionsDotfuscator Professional Edition 4.9dotfuscator"
    set xmlpath="C:Users11320DesktopMyApp1Basic混淆	empMyApp1Basic混淆.xml"
    %dotfuscatorpath% /v %xmlpath%
    
    ::压缩
    set pathwinrar="C:Program FilesWinRARWinRAR.exe"
    set pathzipfile="C:Users11320DesktopMyApp1混淆afterMyApp1.zip"
    set afterpath1="C:Users11320DesktopMyApp1混淆afterMyApp1Front.exe"
    set afterpath2="C:Users11320DesktopMyApp1混淆afterMyApp1Basic.dll"
    set afterpath3="C:Users11320DesktopMyApp1混淆afterMyApp1Back.exe"
    %pathwinrar% a -ep1 -o+ -ibck %pathzipfile% %afterpath1%
    %pathwinrar% a -ep1 -o+ -ibck %pathzipfile% %afterpath2%
    %pathwinrar% a -ep1 -o+ -ibck %pathzipfile% %afterpath3%
    
    :End
    pause

     

  • 相关阅读:
    winfrom 获取当前系统时间
    netcore3.1API+efcore快速搭建
    php
    php
    php
    php-array的相关函数使用
    php-正则表达式
    vim的复制与粘贴
    vim的多窗口和文件切换操作
    laravel教程中出现500问题
  • 原文地址:https://www.cnblogs.com/aitong/p/10627930.html
Copyright © 2011-2022 走看看