Skip to content

Commit

Permalink
added some quick build files that will also run both silverlight and …
Browse files Browse the repository at this point in the history
…nunit-console tests
  • Loading branch information
staxmanade committed Feb 14, 2011
1 parent 6653d6c commit 34585ab
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.Debug.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

call "%VS100COMNTOOLS%\vsvars32.bat"

msbuild i4o.sln /p:Configuration=Debug /verbosity:normal
if %errorlevel% neq 0 exit /b %errorlevel%

.\packages\StatLight.1.3.3981\tools\StatLight.exe -x=.\i4o.Silverlight.Tests\Bin\Debug\i4o.Silverlight.Tests.xap
if %errorlevel% neq 0 exit /b %errorlevel%

.\packages\NUnit.2.5.7.10213\Tools\nunit-console.exe .\i4o.Tests\bin\Debug\i4o2.Tests.dll
if %errorlevel% neq 0 exit /b %errorlevel%
11 changes: 11 additions & 0 deletions build.Release.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

call "%VS100COMNTOOLS%\vsvars32.bat"

msbuild i4o.sln /p:Configuration=Release /verbosity:normal
if %errorlevel% neq 0 exit /b %errorlevel%

.\packages\StatLight.1.3.3981\tools\StatLight.exe -x=.\i4o.Silverlight.Tests\Bin\Release\i4o.Silverlight.Tests.xap
if %errorlevel% neq 0 exit /b %errorlevel%

.\packages\NUnit.2.5.7.10213\Tools\nunit-console.exe .\i4o.Tests\bin\Release\i4o2.Tests.dll
if %errorlevel% neq 0 exit /b %errorlevel%

0 comments on commit 34585ab

Please sign in to comment.