Skip to content

Commit

Permalink
build script tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftbot committed Sep 2, 2012
1 parent 55f0ece commit 06c65ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.cmd
Expand Up @@ -8,6 +8,6 @@ IF '%2'=='' (SET platform="x86") ELSE (SET platform=%2)
:: Build the solution. Override the platform to account for running
:: from Visual Studio Tools command prompt (x64). Log quietly to the
:: console and verbosely to a file.
%msbuild% src/MarkPad.sln /nologo /property:Platform=%platform% /property:Configuration=%configuration% /verbosity:minimal /flp:verbosity=diagnostic
%msbuild% src/MarkPad.sln /t:Rebuild /nologo /property:Platform=%platform% /property:Configuration=%configuration% /verbosity:minimal /flp:verbosity=diagnostic

IF NOT ERRORLEVEL 0 EXIT /B %ERRORLEVEL%
4 changes: 2 additions & 2 deletions run-tests.cmd
Expand Up @@ -3,8 +3,8 @@
SET build="%~dp0\build.cmd"
SET xunit="%~dp0\tools\xunit\xunit.console.clr4.x86.exe"

CALL %build% Testing "x86"
CALL %build% Release "x86"

CALL %xunit% "%~dp0src\MarkPad.Tests\bin\Testing\MarkPad.Tests.dll"
CALL %xunit% "%~dp0src\MarkPad.Tests\bin\Release\MarkPad.Tests.dll"

IF NOT ERRORLEVEL 0 EXIT /B %ERRORLEVEL%

0 comments on commit 06c65ab

Please sign in to comment.