2009-11-08 06:49:58 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project DefaultTargets="TeamCity" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!-- TeamCity built-in NUnit runner -->
|
|
|
|
<UsingTask TaskName="NUnit" AssemblyFile="$(teamcity_dotnet_nunitlauncher_msbuild_task)"/>
|
|
|
|
|
|
|
|
<!-- Build solution file in debug mode for running tests -->
|
|
|
|
<Target Name ="BuildSolution">
|
|
|
|
<MSBuild
|
|
|
|
Projects="src\Orchard.sln"
|
|
|
|
Targets="Build"
|
|
|
|
Properties="Configuration=Debug"/>
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
<!-- Run unit tests using TeamCity NUnit runner -->
|
|
|
|
<Target Name="TeamCity" DependsOnTargets="BuildSolution">
|
|
|
|
<!-- TODO: This will change once we have a proper build task into the "dist" directory -->
|
|
|
|
<!-- Note: We use x86 because we are using a x86 version of SQLite -->
|
2009-11-14 16:27:32 +08:00
|
|
|
<NUnit Platform="x86" NUnitVersion="NUnit-2.5.0" Assemblies="src\Orchard.Tests\bin\Debug\Orchard.Tests.dll;src\Orchard.Web.Tests\bin\Debug\Orchard.Web.Tests.dll;src\Orchard.Tests.Packages\bin\Debug\Orchard.Tests.Packages.dll"/>
|
2009-11-08 06:49:58 +08:00
|
|
|
</Target>
|
|
|
|
</Project>
|