Created
March 24, 2017 18:38
-
-
Save JeremyMorgan/5ae1886b9198e1ebab17679e27685657 to your computer and use it in GitHub Desktop.
Batch file for building VS projects
This file contains hidden or 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
@echo off | |
call "%VS110COMNTOOLS%\..\..\VC\vcvarsall.bat" | |
:start | |
echo Build Start: %TIME:~0,2%:%TIME:~3,2%:%TIME:~6,2%.%TIME:~9,2% | |
%WINDIR%\Microsoft.NET\Framework\%FrameworkVersion%\msbuild.exe (.msbuildfile) (params) | |
:end | |
echo Build Completed: %TIME:~0,2%:%TIME:~3,2%:%TIME:~6,2%.%TIME:~9,2% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment