Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranurse <andrew@andrewnurse.net>2012-06-01 21:52:21 +0400
committeranurse <andrew@andrewnurse.net>2012-06-01 21:52:21 +0400
commitc7c349dda0ae8382c23b6b5a79831930b1ea0f18 (patch)
tree2a9b412d2cd2b1710859c36755ea3d7f99b24044 /build.cmd
parentc568603d2bd52d3b82bc046724bda094953e2ee5 (diff)
Added explicit Platform=Any CPU option to build.cmd to ease builds in x64 environments
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.cmd b/build.cmd
index 512d83b8..6cf45a31 100644
--- a/build.cmd
+++ b/build.cmd
@@ -7,12 +7,12 @@ mkdir bin
:Build
if "%1" == "" goto BuildDefaults
-%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild Runtime.msbuild /m /nr:false /t:%* /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal
+%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild Runtime.msbuild /m /nr:false /t:%* /p:Platform="Any CPU" /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal
if errorlevel 1 goto BuildFail
goto BuildSuccess
:BuildDefaults
-%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild Runtime.msbuild /m /nr:false /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal
+%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild Runtime.msbuild /m /nr:false /p:Platform="Any CPU" /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal
if errorlevel 1 goto BuildFail
goto BuildSuccess