From 07bd09a155d9da48eb9742a8d57d58bc21660c32 Mon Sep 17 00:00:00 2001 From: Eric Erhardt Date: Mon, 10 Apr 2017 18:18:30 -0500 Subject: [PATCH] Append -portable to shared framework assets. core-setup is producing "portable" assets with a "-portable" name. We should be consuming those from the CLI build. --- Microsoft.DotNet.Cli.sln | 1 + build/BuildDefaults.props | 3 ++- build/BundledRuntimes.props | 11 +++++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Microsoft.DotNet.Cli.sln b/Microsoft.DotNet.Cli.sln index be6b9bf42..3eaadc0d2 100644 --- a/Microsoft.DotNet.Cli.sln +++ b/Microsoft.DotNet.Cli.sln @@ -24,6 +24,7 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{89905EC4-BC0F-443B-8ADF-691321F10108}" ProjectSection(SolutionItems) = preProject build\AzureInfo.props = build\AzureInfo.props + build\BackwardsCompatibilityRuntimes.props = build\BackwardsCompatibilityRuntimes.props build\BranchInfo.props = build\BranchInfo.props build\Branding.props = build\Branding.props build\BuildDefaults.props = build\BuildDefaults.props diff --git a/build/BuildDefaults.props b/build/BuildDefaults.props index cb697dbf1..e675bcc4b 100644 --- a/build/BuildDefaults.props +++ b/build/BuildDefaults.props @@ -4,7 +4,8 @@ Debug true false - true + true + true true diff --git a/build/BundledRuntimes.props b/build/BundledRuntimes.props index 0603597c7..0821f4f2c 100644 --- a/build/BundledRuntimes.props +++ b/build/BundledRuntimes.props @@ -1,20 +1,23 @@ + -portable + -portable + - dotnet-host-$(ProductMonikerRid).$(SharedHostVersion)$(InstallerExtension) + dotnet-host-$(ProductMonikerRid).$(SharedHostVersion)$(InstallerPortableSuffix)$(InstallerExtension) $(PackagesDirectory)/$(DownloadedSharedHostInstallerFileName) - dotnet-hostfxr-$(ProductMonikerRid).$(HostFxrVersion)$(InstallerExtension) + dotnet-hostfxr-$(ProductMonikerRid).$(HostFxrVersion)$(InstallerPortableSuffix)$(InstallerExtension) $(PackagesDirectory)/$(DownloadedHostFxrInstallerFileName) - dotnet-sharedframework-$(ProductMonikerRid).$(SharedFrameworkVersion)$(InstallerExtension) + dotnet-sharedframework-$(ProductMonikerRid).$(SharedFrameworkVersion)$(InstallerPortableSuffix)$(InstallerExtension) $(PackagesDirectory)/$(DownloadedSharedFrameworkInstallerFileName) $(ProductMonikerRid) linux-x64 - dotnet-$(SharedFrameworkRid).$(SharedFrameworkVersion)$(ArchiveExtension) + dotnet-$(SharedFrameworkRid).$(SharedFrameworkVersion)$(ArchivePortableSuffix)$(ArchiveExtension)