ad56d3759e
Put back the dependency of package. Duplicate a publish step with package and use that one in all linux distro specific
30 lines
No EOL
1.4 KiB
XML
30 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" DefaultTargets="Layout" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildThisFileDirectory)/LinuxDistrosNativeInstaller.props" />
|
|
|
|
<Target Name="BuildAndPublishAllLinuxDistrosNativeInstallers" DependsOnTargets="Prepare;Compile;SetBuildingAndPublishingProps;RunAllSandBoxAndPackage;MultiPublish" />
|
|
|
|
|
|
<Target Name="RunAllSandBoxAndPackage" >
|
|
<MSBuild Projects="$(MSBuildThisFileDirectory)/SandBoxAndPackageInParallel.proj"
|
|
Targets="RunInSandBoxAndPackage"
|
|
Properties="RepoRoot=$(RepoRoot);
|
|
BuildConfiguration=$(BuildConfiguration);
|
|
InstallerOutputDirectory=$(InstallerOutputDirectory);
|
|
" />
|
|
</Target>
|
|
|
|
<Target Name="MultiPublish" DependsOnTargets="AddAllGeneratedInstaller;PublishWithoutPackage" />
|
|
|
|
<Target Name="AddAllGeneratedInstaller">
|
|
<ItemGroup>
|
|
<GeneratedInstallers Include="$(InstallerOutputDirectory)/$(DistroSpecificArtifactNameWithVersionCombinedHostHostFxrFrameworkSdkWithoutHostMonikerRid)%(LinuxDistrosNeedNativeInstaller.DistroNameInInstaller).%(LinuxDistrosNeedNativeInstaller.InstallerExtension)" />
|
|
</ItemGroup>
|
|
</Target>
|
|
|
|
<Target Name="SetBuildingAndPublishingProps">
|
|
<PropertyGroup>
|
|
<IsBuildingAndPublishingAllLinuxDistrosNativeInstallers>true</IsBuildingAndPublishingAllLinuxDistrosNativeInstallers>
|
|
</PropertyGroup>
|
|
</Target>
|
|
</Project> |