Commit 42e8ec7f authored by ArnoldZokas's avatar ArnoldZokas

Added batch file for running 'GenerateReleasePackage'

parent 930ec0da
...@@ -4,7 +4,6 @@ ...@@ -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
......
: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
\ No newline at end of file
...@@ -23,5 +23,6 @@ ...@@ -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>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment