forked from SickheadGames/Torsion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmsbuild.bat
More file actions
15 lines (11 loc) · 712 Bytes
/
msbuild.bat
File metadata and controls
15 lines (11 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off
set LASTPATH=%PATH%
set LASTLIB=%LIB%
set LASTINCLUDE=%INCLUDE%
set INCLUDE=C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include
set LIB=C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\lib;C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Lib
set PATH=C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bin;C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
msbuild.exe /v:n /noconlog /nologo /l:FileLogger,Microsoft.Build.Engine;logfile=msbuild.log msbuild.proj
set PATH=%LASTPATH%
set LIB=%LASTLIB%
set INCLUDE=%LASTINCLUDE%