-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathBuild.props
More file actions
30 lines (19 loc) · 1.06 KB
/
Build.props
File metadata and controls
30 lines (19 loc) · 1.06 KB
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
26
27
28
29
30
<!--
This file defines the tool external dependencies used by this repo.
This file might be updated by automation.
-->
<Project>
<PropertyGroup Label="Define Basic Properties">
<!-- Make sure any change to this file invoke a rebuild -->
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
<!-- Setup the EnlistmentRoot, without the last '\' -->
<EnlistmentRoot Condition="'$(EnlistmentRoot)'==''">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), build.root))</EnlistmentRoot>
<EnlistToolPath Condition="'$(EnlistToolPath)'==''">$(EnlistmentRoot)\tool</EnlistToolPath>
</PropertyGroup>
<Import Project=".\versioning.props" />
<PropertyGroup>
<!-- Before/After injection Settings -->
<CustomBeforeMicrosoftCommonTargets>$(MSBuildThisFileDirectory)Before.Common.targets</CustomBeforeMicrosoftCommonTargets>
<CustomAfterMicrosoftCommonTargets>$(MSBuildThisFileDirectory)After.Common.targets</CustomAfterMicrosoftCommonTargets>
</PropertyGroup>
</Project>