forked from git-tfs/git-tfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CI.proj
19 lines (15 loc) · 767 Bytes
/
CI.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0"?>
<Project ToolsVersion="4.0" DefaultTargets="CI" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SolutionDir>./</SolutionDir>
<RequireRestoreConsent>false</RequireRestoreConsent>
</PropertyGroup>
<Target Name="CI" DependsOnTargets="Build; RunTests" />
<Target Name="Build">
<MSBuild Projects="GitTfs.sln" Properties="Configuration=Debug;Platform=Any CPU;RequireRestoreConsent=false" Targets="GitTfsTest" />
</Target>
<UsingTask AssemblyFile="packages/xunit.runner.msbuild/build/portable-net45+win8+wp8+wpa81/xunit.runner.msbuild.dll" TaskName="Xunit.Runner.MSBuild.xunit" />
<Target Name="RunTests">
<xunit Assemblies="GitTfsTest/bin/Debug/GitTfsTest.dll" />
</Target>
</Project>