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: 9d46b71673c7a4527fb23db8624a4548c242a398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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>
  </PropertyGroup>
</Project>