You are viewing a plain text version of this content. The canonical link for it is here.
Posted to stonehenge-commits@incubator.apache.org by dr...@apache.org on 2009/04/29 18:54:10 UTC

svn commit: r769872 - /incubator/stonehenge/trunk/stocktrader/dotnet/BuildDotNet.cmd

Author: drewbai
Date: Wed Apr 29 18:54:10 2009
New Revision: 769872

URL: http://svn.apache.org/viewvc?rev=769872&view=rev
Log:
Builds debug and release
added build of setup actions as well

Modified:
    incubator/stonehenge/trunk/stocktrader/dotnet/BuildDotNet.cmd

Modified: incubator/stonehenge/trunk/stocktrader/dotnet/BuildDotNet.cmd
URL: http://svn.apache.org/viewvc/incubator/stonehenge/trunk/stocktrader/dotnet/BuildDotNet.cmd?rev=769872&r1=769871&r2=769872&view=diff
==============================================================================
--- incubator/stonehenge/trunk/stocktrader/dotnet/BuildDotNet.cmd (original)
+++ incubator/stonehenge/trunk/stocktrader/dotnet/BuildDotNet.cmd Wed Apr 29 18:54:10 2009
@@ -22,20 +22,34 @@
 
 @ECHO MSBuildToolsPath=%MSBuildToolsPath%
 
-cd .\order_processor
+cd .\setup_utilities\SetupActions
+@echo Build SetupActions
+"%MSBuildToolsPath%msbuild" SetupActions.sln /t:Clean /p:Configuration=Debug
+"%MSBuildToolsPath%msbuild" SetupActions.sln /t:Clean /p:Configuration=release
+"%MSBuildToolsPath%msbuild" SetupActions.sln /t:Build /p:Configuration=Debug;Platform="Any CPU"
+"%MSBuildToolsPath%msbuild" SetupActions.sln /t:Build /p:Configuration=release;Platform="Any CPU"
+
+cd ..\..\order_processor
 @echo Build order_processor
-"%MSBuildToolsPath%msbuild" OrderProcessorSolution.sln /t:clean
-"%MSBuildToolsPath%msbuild" OrderProcessorSolution.sln 
+"%MSBuildToolsPath%msbuild" OrderProcessorSolution.sln /t:Clean /p:Configuration=Debug
+"%MSBuildToolsPath%msbuild" OrderProcessorSolution.sln /t:Clean /p:Configuration=release
+"%MSBuildToolsPath%msbuild" OrderProcessorSolution.sln /t:Build /p:Configuration=Debug;Platform="Any CPU"
+"%MSBuildToolsPath%msbuild" OrderProcessorSolution.sln /t:Build /p:Configuration=release;Platform="Any CPU"
 
 cd ..\business_service
 @echo Build business_service
-"%MSBuildToolsPath%msbuild" BusinessServiceSolution.sln /t:clean
-"%MSBuildToolsPath%msbuild" BusinessServiceSolution.sln
+"%MSBuildToolsPath%msbuild" BusinessServiceSolution.sln /t:Clean /p:Configuration=Debug
+"%MSBuildToolsPath%msbuild" BusinessServiceSolution.sln /t:Clean /p:Configuration=release
+"%MSBuildToolsPath%msbuild" BusinessServiceSolution.sln /t:Build /p:Configuration=Debug;Platform="Any CPU"
+"%MSBuildToolsPath%msbuild" BusinessServiceSolution.sln /t:Build /p:Configuration=release;Platform="Any CPU"
 
 cd ..\trader_client
 @echo Build trader_client
-"%MSBuildToolsPath%msbuild" StockTraderWebAppSolution.sln /t:clean
-"%MSBuildToolsPath%msbuild" StockTraderWebAppSolution.sln
+"%MSBuildToolsPath%msbuild" StockTraderWebAppSolution.sln /t:Clean /p:Configuration=Debug
+"%MSBuildToolsPath%msbuild" StockTraderWebAppSolution.sln /t:Clean /p:Configuration=release
+"%MSBuildToolsPath%msbuild" StockTraderWebAppSolution.sln /t:Build /p:Configuration=Debug;Platform="Any CPU"
+"%MSBuildToolsPath%msbuild" StockTraderWebAppSolution.sln /t:Build /p:Configuration=release;Platform="Any CPU"
+
 
 @cd ..