-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathKoreBuild.proj
30 lines (26 loc) · 1.71 KB
/
KoreBuild.proj
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
<Project DefaultTargets="Build">
<!--
Usage Notes:
These properties should not be set by KoreBuild itself, but is instead used to extend KoreBuild externally.
- CustomBeforeKoreBuildProps
- CustomAfterKoreBuildTargets
- CustomKoreBuildModulesPath
-->
<!-- props -->
<Import Project="$(CustomBeforeKoreBuildProps)" Condition="'$(CustomBeforeKoreBuildProps)' != '' AND Exists('$(CustomBeforeKoreBuildProps)')" />
<Import Project="$(RepositoryRoot)build\repo.beforecommon.props" Condition="Exists('$(RepositoryRoot)build\repo.beforecommon.props')" />
<Import Project="KoreBuild.Common.props" />
<Import Project="modules\*\module.props" />
<Import Project="$(CustomKoreBuildModulesPath)\*\module.props" Condition="Exists('$(CustomKoreBuildModulesPath)')" />
<Import Project="$(RepositoryRoot)version.props" Condition="Exists('$(RepositoryRoot)version.props')" />
<Import Project="$(RepositoryRoot)build\repo.props" Condition="Exists('$(RepositoryRoot)build\repo.props')" />
<Import Project="$(RepositoryRoot)build\tasks\*.tasks" Condition="Exists('$(RepositoryRoot)build\tasks\')" />
<!-- targets -->
<Import Project="KoreBuild.Common.targets" />
<Import Project="modules\*\module.targets" />
<Import Project="$(CustomKoreBuildModulesPath)\*\module.targets" Condition="Exists('$(CustomKoreBuildModulesPath)')" />
<Import Project="$(RepositoryRoot)build\repo.targets" Condition="Exists('$(RepositoryRoot)build\repo.targets')" />
<Import Project="KoreBuild.Overrides.targets" />
<Import Project="$(CustomAfterKoreBuildTargets)" Condition="'$(CustomAfterKoreBuildTargets)' != '' AND Exists('$(CustomAfterKoreBuildTargets)')" />
<Import Project="KoreBuild.Verify.targets" />
</Project>