-
Notifications
You must be signed in to change notification settings - Fork 34
/
Build.config
22 lines (22 loc) · 938 Bytes
/
Build.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<XUnitPath>packages\xunit.runners.1.9.2\tools</XUnitPath>
<NuGetPath>packages\NuGet.CommandLine.2.7.3\tools</NuGetPath>
<NuGetPackageDependencyRoot>hyprlinkr</NuGetPackageDependencyRoot>
</PropertyGroup>
<ItemGroup>
<BuildOutput Include="Hyprlinkr\bin\Release\Ploeh.Hyprlinkr.dll" />
<BuildOutput Include="Hyprlinkr\bin\Release\Ploeh.Hyprlinkr.XML" />
</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\*UnitTest*.dll" />
</ItemGroup>
</Target>
<ItemGroup>
<ProjectToBuild Include="*.sln" />
</ItemGroup>
</Project>