forked from NuGet/WebBackgrounder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebBackgrounder.msbuild
21 lines (16 loc) · 937 Bytes
/
WebBackgrounder.msbuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)' == ''">
<Configuration>Debug</Configuration>
</PropertyGroup>
<UsingTask AssemblyFile=".\3rdParty\xunit\xunit.runner.msbuild.dll" TaskName="Xunit.Runner.MSBuild.xunit" />
<Target Name="Clean">
<MSBuild Projects=".\src\WebBackgrounder.sln" Targets="Clean" Properties="Configuration=$(Configuration)"/>
</Target>
<Target Name="Build" DependsOnTargets="Clean">
<MSBuild Projects=".\src\WebBackgrounder.sln" Targets="Build" Properties="Configuration=$(Configuration)" />
</Target>
<Target Name="RunFacts" DependsOnTargets="Build">
<xunit Assembly=".\src\WebBackgrounder.UnitTests\bin\$(Configuration)\WebBackgrounder.UnitTests.dll" Xml="WebBackgrounder.UnitTests.results.xml" />
</Target>
<Target Name="FullBuild" DependsOnTargets="RunFacts" />
</Project>