From 0e22e809f5979b4c4e31a17f2faabf86efcc2e9f Mon Sep 17 00:00:00 2001 From: wtgodbe Date: Mon, 30 Jan 2017 13:24:16 -0800 Subject: [PATCH] Change '.' to '-' in publishing test native binaries Commit migrated from https://github.com/dotnet/coreclr/commit/6344b1859ffebb8d0bea095573a32ce022b9d929 --- src/coreclr/src/publish.proj | 1 + src/coreclr/src/syncAzure.proj | 1 + 2 files changed, 2 insertions(+) diff --git a/src/coreclr/src/publish.proj b/src/coreclr/src/publish.proj index b1ef3bb..ebbf113 100644 --- a/src/coreclr/src/publish.proj +++ b/src/coreclr/src/publish.proj @@ -33,6 +33,7 @@ coreclr-$(PreReleaseLabel)-$(BuildNumberMajor)-$(BuildNumberMinor)-$(__DistroRid)-$(__BuildArch) $(__Container) $(__Container)-$(__DistroRid)-$(__BuildArch) + $(ContainerName.Replace(".","-")) diff --git a/src/coreclr/src/syncAzure.proj b/src/coreclr/src/syncAzure.proj index de468b7..9c262b3 100644 --- a/src/coreclr/src/syncAzure.proj +++ b/src/coreclr/src/syncAzure.proj @@ -6,6 +6,7 @@ coreclr-$(PreReleaseLabel) $(ContainerNamePrefix)-$(BuildNumberMajor)-$(BuildNumberMinor) $(__Container) + $(ContainerName.Replace(".","-")) $(PackagesDir)AzureTransfer $(PackagesDir)TestNativeBins -- 2.7.4