Added batch file for running 'GenerateReleasePackage'

pull/288/head
ArnoldZokas 14 years ago
parent 930ec0dab2
commit 42e8ec7fd3
  1. 1
      build/BuildAll.bat
  2. 14
      build/GenerateReleasePackage.bat
  3. 1
      build/build.csproj

@ -4,7 +4,6 @@
IF ERRORLEVEL 1 GOTO END IF ERRORLEVEL 1 GOTO END
:SILVERLIGHT2 :SILVERLIGHT2
ECHO RONG!
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild build.csproj /m /t:Build /p:BuildConfiguration=Debug_Silverlight2 %WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild build.csproj /m /t:Build /p:BuildConfiguration=Debug_Silverlight2
:END :END

@ -0,0 +1,14 @@
:BEGIN
@ECHO OFF
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild build.csproj /m /t:Build /p:BuildConfiguration=Release
IF ERRORLEVEL 1 GOTO END
:SILVERLIGHT2
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild build.csproj /m /t:Build /p:BuildConfiguration=Release_Silverlight2
IF ERRORLEVEL 1 GOTO END
:GENERATE_PACKAGE
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild build.csproj /m /t:GeneratePackage /p:PackageScope=ReleaseBinaries
:END
PAUSE

@ -23,5 +23,6 @@
<!-- targets --> <!-- targets -->
<Target Name="Build" DependsOnTargets="_Compile" /> <Target Name="Build" DependsOnTargets="_Compile" />
<Target Name="RunBenchmarks" DependsOnTargets="_Compile" /> <Target Name="RunBenchmarks" DependsOnTargets="_Compile" />
<Target Name="GeneratePackage" />
</Project> </Project>

Loading…
Cancel
Save