Directory.Build.props 1.0 KB
Newer Older
D
Davis Goodin 已提交
1 2
<Project>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., Directory.Build.props))\Directory.Build.props" />
3 4

  <PropertyGroup>
5
    <PackagingRoot>$(SetupRoot)src/pkg/packaging/</PackagingRoot>
6

7 8 9
    <!-- The runtime package is distro-independent. (Runtime-deps packages vary per distro.) -->
    <BuildRuntimeDebs>$(BuildDistroIndependentInstallers)</BuildRuntimeDebs>
    <BuildRuntimeRpms>$(BuildDistroIndependentInstallers)</BuildRuntimeRpms>
10

11
    <!-- Use trailing '/'. Heat.exe doesn't accept a trailing '\'.-->
12 13 14
    <SharedHostPublishRoot>$(IntermediateOutputRootPath)sharedHost/</SharedHostPublishRoot>
    <HostFxrPublishRoot>$(IntermediateOutputRootPath)hostFxr/</HostFxrPublishRoot>
    <SharedFrameworkPublishRoot>$(IntermediateOutputRootPath)sharedFx/</SharedFrameworkPublishRoot>
15
    <CombinedPublishRoot>$(IntermediateOutputRootPath)combined-framework-host/</CombinedPublishRoot>
16
    <NetHostPublishRoot>$(IntermediateOutputRootPath)nethost/</NetHostPublishRoot>
17 18
  </PropertyGroup>

19
</Project>