-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
15 lines (12 loc) · 966 Bytes
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Project>
<PropertyGroup>
<CCSourceDirectory>$(MSBuildThisFileDirectory.TrimEnd('\').TrimEnd('/'))</CCSourceDirectory>
<CCDependenciesProps>$([System.IO.Path]::Combine($(CCSourceDirectory), 'build', 'Dependencies.props'))</CCDependenciesProps>
<CCPackageProps>$([System.IO.Path]::Combine($(CCSourceDirectory), 'build', 'Package.props'))</CCPackageProps>
<CCTestProjectProps>$([System.IO.Path]::Combine($(CCSourceDirectory), 'build', 'TestProject.props'))</CCTestProjectProps>
<CCResourceProjectProps>$([System.IO.Path]::Combine($(CCSourceDirectory), 'build', 'ResourceProject.props'))</CCResourceProjectProps>
<CCLibraryProjectProps>$([System.IO.Path]::Combine($(CCSourceDirectory), 'build', 'LibraryProject.props'))</CCLibraryProjectProps>
</PropertyGroup>
<Import Project="$(CCDependenciesProps)" Condition="Exists('$(CCDependenciesProps)')"/>
<Import Project="$(CCPackageProps)" Condition="Exists('$(CCPackageProps)')"/>
</Project>