Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Directory.Build.props « Debian « Installers « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3d7df1c9ef18d9fefaa17b9b362ac8a2ff1ba88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />

  <PropertyGroup>
    <DisablePubternalApiCheck>true</DisablePubternalApiCheck>
    <OutputPath>$(InstallersOutputPath)</OutputPath>
    <IntermediateOutputPath>$(IntermediateOutputPath)$(TargetRuntimeIdentifier)\</IntermediateOutputPath>

    <!-- Installer settings -->
    <DebianPackageInstallRoot>/usr/share/dotnet</DebianPackageInstallRoot>

    <DebianPackageArch Condition=" '$(TargetArchitecture)' == 'x64' ">amd64</DebianPackageArch>

    <DebianBuildScript>$(MSBuildThisFileDirectory)tools/build.sh</DebianBuildScript>

    <!-- All installers are shipping assets. -->
    <IsShipping>true</IsShipping>
    <IsShippingPackage>true</IsShippingPackage>
  </PropertyGroup>
</Project>