summaryrefslogtreecommitdiff
path: root/src/publish.proj
diff options
context:
space:
mode:
authorJC Aguilera <juanam@microsoft.com>2017-11-01 12:45:09 -0700
committerGitHub <noreply@github.com>2017-11-01 12:45:09 -0700
commit53d744fd4a196afe6f0bcd068b33cec4db80e065 (patch)
treef56c2deef1490aca351b189de47d577fd3323714 /src/publish.proj
parent4df369097a8c9bc0acaac9444bd91984c6b88724 (diff)
downloadcoreclr-53d744fd4a196afe6f0bcd068b33cec4db80e065.tar.gz
coreclr-53d744fd4a196afe6f0bcd068b33cec4db80e065.tar.bz2
coreclr-53d744fd4a196afe6f0bcd068b33cec4db80e065.zip
Publishing to the transport feed main feed
Supporting publishing to the main feed where the relative path is empty
Diffstat (limited to 'src/publish.proj')
-rw-r--r--src/publish.proj8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/publish.proj b/src/publish.proj
index 81ac12df7c..2c56430382 100644
--- a/src/publish.proj
+++ b/src/publish.proj
@@ -19,8 +19,7 @@
<Target Name="PublishPackages" Condition="'$(__PublishPackages)' == 'true' and ('$(OfficialPublish)' != 'true' or '$(__BuildType)' == 'Release')">
<PropertyGroup>
- <RelativePath Condition="'$(RelativePath)' == ''">$(__BuildType)/pkg</RelativePath>
- <ExpectedFeedUrl>https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePath)/index.json</ExpectedFeedUrl>
+ <ExpectedFeedUrl>https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePath)index.json</ExpectedFeedUrl>
</PropertyGroup>
<ItemGroup>
<ItemsToPush Remove="*.nupkg" />
@@ -36,8 +35,7 @@
<Target Name="PublishSymbolPackages" Condition="'$(__PublishSymbols)' == 'true' and ('$(OfficialPublish)' != 'true' or '$(__BuildType)' == 'Release')">
<PropertyGroup>
- <RelativePath Condition="'$(RelativePath)' == ''">$(__BuildType)/symbolpkg</RelativePath>
- <ExpectedFeedUrl>https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePath)/index.json</ExpectedFeedUrl>
+ <ExpectedFeedUrl>https://$(AccountName).blob.core.windows.net/$(ContainerName)/$(RelativePath)index.json</ExpectedFeedUrl>
</PropertyGroup>
<ItemGroup>
<ItemsToPush Remove="*.nupkg" />
@@ -68,4 +66,4 @@
<Target Name="Build" DependsOnTargets="PublishPackages;PublishSymbolPackages;PublishTestNativeBinaries"/>
-</Project> \ No newline at end of file
+</Project>