17 lines
713 B
XML
17 lines
713 B
XML
<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>
|