Skip to content

Commit

Permalink
simple build script
Browse files Browse the repository at this point in the history
  • Loading branch information
jediwhale committed Jan 12, 2009
1 parent 7dd12b3 commit a4a3087
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -5,3 +5,5 @@ desktop.ini
build/
bin/
obj/
TestResult.xml
*.cache
2 changes: 2 additions & 0 deletions build.cmd
@@ -0,0 +1,2 @@
@echo off
"c:\windows\microsoft.net\framework\v3.5\msbuild.exe" /nologo build.proj %1 %2 %3 %4 %5 %6 %7 %8 %9
18 changes: 18 additions & 0 deletions build.proj
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets="solution;unittests" >

<PropertyGroup>
<Config>Debug</Config>
</PropertyGroup>

<Target Name="solution">
<MSBuild Projects="fitnessedotnet.sln"
Properties="Configuration=$(Config)" />
</Target>

<Target Name="unittests">
<Exec Command="&quot;C:\Program Files\NUnit 2.4.8\bin\nunit-console&quot; -nologo .\build\$(Config)\UnitTest.dll" />
</Target>

</Project>

0 comments on commit a4a3087

Please sign in to comment.