-
Notifications
You must be signed in to change notification settings - Fork 16
/
Build.config
25 lines (25 loc) · 1.13 KB
/
Build.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<XUnitPath>Src\packages\xunit.runners.1.9.2\tools</XUnitPath>
<NuGetPath>Src\packages\NuGet.CommandLine.2.7.1\tools</NuGetPath>
<NuGetPackageDependencyRoot>zerotonine</NuGetPackageDependencyRoot>
</PropertyGroup>
<ItemGroup>
<BuildOutput Include="Src\Zero29\bin\Release\Zero29.exe" />
<BuildOutput Include="Src\Zero29\bin\Release\Zero29.XML" />
<BuildOutput Include="Src\ZeroToNine\bin\Release\Ploeh.ZeroToNine.dll" />
<BuildOutput Include="Src\ZeroToNine\bin\Release\Ploeh.ZeroToNine.XML" />
<BuildOutput Include="Src\ZeroToNine\bin\Release\FSharp.Core.dll" />
</ItemGroup>
<!-- Expand build output files AFTER the build has run.
Note that the Build Task MUST BE defined by the file that includes this file. -->
<Target Name="GetTestAssemblies" DependsOnTargets="Build">
<ItemGroup>
<TestAssemblies Include="**\bin\Release\*Tests.dll" />
</ItemGroup>
</Target>
<ItemGroup>
<ProjectToBuild Include="Src/*.sln" />
</ItemGroup>
</Project>