michael@0: REM This batch file is meant to facilitate regenerating prebuilt binaries for michael@0: REM the Windows tools. michael@0: REM You MUST run it from a Visual Studio xxxx Command Prompt. To do this, michael@0: REM navigate to: michael@0: REM michael@0: REM Start->Programs->Microsoft Visual Studio XXXX->Tools-> michael@0: REM Visual Studio Command Prompt michael@0: REM michael@0: REM Then run this batch file. It performs an SVN update, edits the michael@0: REM README.binaries file to contain michael@0: REM the revision number, and builds the tools. You must run 'svn commit' to michael@0: REM commit the pending edits to the repository. michael@0: michael@0: pushd %~dp0\..\..\ michael@0: call svn update --accept postpone michael@0: cd tools\windows michael@0: devenv symupload\symupload.vcproj /rebuild Release michael@0: copy symupload\Release\symupload.exe binaries\ michael@0: REM switch back to top level so that 'svn info' displays useful information. michael@0: cd ..\..\ michael@0: echo This checkin of the binaries was created by refresh_binaries.bat. > %TEMP%\checkin.txt michael@0: echo Date: %DATE% %TIME% >> %TEMP%\checkin.txt michael@0: echo Repository information (output of 'svn info') follows: >> %TEMP%\checkin.txt michael@0: call svn info >> %TEMP%\checkin.txt michael@0: echo Done! michael@0: echo type 'svn commit -F %%TEMP%%\checkin.txt' to commit. michael@0: popd