-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuild.config
More file actions
22 lines (22 loc) · 939 Bytes
/
Copy pathBuild.config
File metadata and controls
22 lines (22 loc) · 939 Bytes
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>Src\packages\xunit.runners.1.9.2\tools</XUnitPath>
<NuGetPath>Src\packages\NuGet.CommandLine.2.8.0\tools</NuGetPath>
<NuGetPackageDependencyRoot>exude</NuGetPackageDependencyRoot>
</PropertyGroup>
<ItemGroup>
<BuildOutput Include="Src\Exude\bin\Release\Grean.Exude.dll" />
<BuildOutput Include="Src\Exude\bin\Release\Grean.Exude.XML" />
</ItemGroup>
<ItemGroup>
<ProjectToBuild Include="Src\*.sln" />
</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\*UnitTests*.dll" />
</ItemGroup>
</Target>
</Project>