Publish the agnostic 'DEB' installer package to all three feeds.

This commit is contained in:
jbeisner 2018-01-09 00:58:11 +00:00
parent 5b33ba9f3e
commit 14d701dacc
2 changed files with 13 additions and 3 deletions

View file

@ -1,5 +1,15 @@
<Project>
<ItemGroup>
<LinuxDistrosNeedNativeInstaller Include="ubuntu.16.04-x64">
<InstallerExtension>deb</InstallerExtension>
<RepositoryId>$(ubuntu1604x64RepositoryId)</RepositoryId>
<DistroNameInInstaller>x64</DistroNameInInstaller>
</LinuxDistrosNeedNativeInstaller>
<LinuxDistrosNeedNativeInstaller Include="ubuntu.14.04-x64">
<InstallerExtension>deb</InstallerExtension>
<RepositoryId>$(ubuntu1404x64RepositoryId)</RepositoryId>
<DistroNameInInstaller>x64</DistroNameInInstaller>
</LinuxDistrosNeedNativeInstaller>
<LinuxDistrosNeedNativeInstaller Include="debian.8-x64">
<DockerFolder>debian</DockerFolder>
<InstallerExtension>deb</InstallerExtension>

View file

@ -3,10 +3,10 @@
<Import Project="$(MSBuildThisFileDirectory)/LinuxDistrosNativeInstaller.props" />
<Target Name="RunInSandBoxAndPackage" >
<Target Name="RunInSandBoxAndPackage" Condition=" '%(LinuxDistrosNeedNativeInstaller.DockerFolder)' != '' ">
<MSBuild Projects="$(MSBuildThisFileDirectory)/SandBoxAndPackage.proj"
Targets="SandBoxAndPackage"
Properties="RepoRoot=$(RepoRoot);
Targets="SandBoxAndPackage"
Properties="RepoRoot=$(RepoRoot);
LinuxDistrosNeedNativeInstaller=%(LinuxDistrosNeedNativeInstaller.Identity);
DockerFolder=%(LinuxDistrosNeedNativeInstaller.DockerFolder);
BuildConfiguration=$(BuildConfiguration);