summaryrefslogtreecommitdiff
path: root/src/publish.proj
diff options
context:
space:
mode:
authorjashook <jashoo@microsoft.com>2017-11-10 16:06:31 -0800
committerjashook <jashoo@microsoft.com>2017-11-13 12:24:48 -0800
commit3ca66601a64794024a2b928cb036d7e1a3d3a818 (patch)
tree60711b412d983207fb5ac50243508b14093878d5 /src/publish.proj
parenta83d9eedbc3719171268dc8a34503d4c8cc7fda6 (diff)
downloadcoreclr-3ca66601a64794024a2b928cb036d7e1a3d3a818.tar.gz
coreclr-3ca66601a64794024a2b928cb036d7e1a3d3a818.tar.bz2
coreclr-3ca66601a64794024a2b928cb036d7e1a3d3a818.zip
Use new publish vars
Diffstat (limited to 'src/publish.proj')
-rw-r--r--src/publish.proj6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/publish.proj b/src/publish.proj
index a09ea139a8..9a83ee70f4 100644
--- a/src/publish.proj
+++ b/src/publish.proj
@@ -24,7 +24,7 @@
<Target Name="PublishPackages" Condition="'$(__PublishPackages)' == 'true' and ('$(OfficialPublish)' != 'true' or '$(__BuildType)' == 'Release')">
<PropertyGroup>
- <ExpectedFeedUrl>https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePathWithSlash)index.json</ExpectedFeedUrl>
+ <ExpectedFeedUrl Condition="'$(ExpectedFeedUrl)' == ''">https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePathWithSlash)index.json</ExpectedFeedUrl>
</PropertyGroup>
<ItemGroup>
<ItemsToPush Remove="*.nupkg" />
@@ -57,7 +57,7 @@
<Target Name="PublishSymbolPackages" Condition="'$(__PublishSymbols)' == 'true' and ('$(OfficialPublish)' != 'true' or '$(__BuildType)' == 'Release')">
<PropertyGroup>
- <ExpectedFeedUrl>https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePathWithSlash)index.json</ExpectedFeedUrl>
+ <ExpectedFeedUrl Condition="'$(ExpectedFeedUrl)' == ''">https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePathWithSlash)index.json</ExpectedFeedUrl>
</PropertyGroup>
<ItemGroup>
<ItemsToPush Remove="*.nupkg" />
@@ -91,7 +91,7 @@
<Target Name="PublishTestNativeBinaries" Condition="'$(PublishTestNativeBins)' == 'true' and '$(OfficialPublish)' != 'true'">
<PropertyGroup>
<RelativePath Condition="'$(RelativePath)' == ''">$(__BuildType)/TestNativeBins</RelativePath>
- <ExpectedFeedUrl>https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePath)/index.json</ExpectedFeedUrl>
+ <ExpectedFeedUrl Condition="'$(ExpectedFeedUrl)' == ''">https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePath)/index.json</ExpectedFeedUrl>
</PropertyGroup>
<ItemGroup>
<ItemsToPush Remove="*.nupkg" />