-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathBuild.config
24 lines (24 loc) · 1.14 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
<?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>AtomEventStore</NuGetPackageDependencyRoot>
</PropertyGroup>
<ItemGroup>
<BuildOutput Include="AtomEventStore\bin\Release\Grean.AtomEventStore.dll" />
<BuildOutput Include="AtomEventStore\bin\Release\Grean.AtomEventStore.XML" />
<BuildOutput Include="AtomEventStore.AzureBlob\bin\Release\Grean.AtomEventStore.AzureBlob.dll" />
<BuildOutput Include="AtomEventStore.AzureBlob\bin\Release\Grean.AtomEventStore.AzureBlob.XML" />
</ItemGroup>
<ItemGroup>
<ProjectToBuild Include="*.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\*UnitTest*.dll" />
</ItemGroup>
</Target>
</Project>