1<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2  <PropertyGroup>
3    <ErrorIfBuildToolsRestoredFromIndividualProject Condition="!Exists('$(ToolsDir)')">true</ErrorIfBuildToolsRestoredFromIndividualProject>
4  </PropertyGroup>
5
6  <Import Project="..\dir.targets" />
7
8  <!-- Returns the assembly version of the project for consumption
9       by the NuGet package generation -->
10  <Target Name="GetAssemblyVersion"
11          Returns="$(AssemblyVersion)"/>
12
13  <!-- Returns the generated documentation file for consumption
14       by the NuGet package generation -->
15  <Target Name="GetDocumentationFile"
16          Returns="$(DocumentationFile)"/>
17
18  <Target Name="DumpTargets" BeforeTargets="ResolveProjectReferences">
19    <Message Text="DumpTargets> $(OutputPath), C=[$(Configuration)], CG=[$(ConfigurationGroup)], OG=[$(OSGroup)], TG=[$(TargetGroup)]" Importance="Low" />
20  </Target>
21
22</Project>
23