forked from dotnet/runtime
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.proj
More file actions
Latest commit
21 lines (17 loc) · 938 Bytes
/
Copy pathBuild.proj
File metadata and controls
21 lines (17 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<ProjectSdk="Microsoft.Build.Traversal">
<ItemGroup>
<!-- Subsets are already imported by Directory.Build.props. -->
<ProjectReferenceInclude="@(ProjectToBuild)" />
<!-- Only include tasks.proj during restore and build incrementally via a target. -->
<ProjectReferenceInclude="$(RepoTasksDir)tasks.proj"Condition="'$(MSBuildRestoreSessionId)' != ''" />
</ItemGroup>
<ImportProject="$(RepositoryEngineeringDir)SubsetValidation.targets" />
<!-- Upfront restore hooks -->
<ImportProject="$(RepositoryEngineeringDir)restore\docs.targets"Condition="'$(DotNetBuildFromSource)' != 'true'" />
<ImportProject="$(RepositoryEngineeringDir)restore\optimizationData.targets"Condition="'$(DotNetBuildFromSource)' != 'true'" />
<TargetName="BuildLocalTasks"
BeforeTargets="Build">
<MSBuildProjects="$(RepoTasksDir)tasks.proj"
Targets="BuildIncrementally" />
</Target>
</Project>