Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Fernandez Madero <safern@microsoft.com>2018-04-11 04:23:54 +0300
committerGitHub <noreply@github.com>2018-04-11 04:23:54 +0300
commit4df2b0f81c953dbc351c6f3bc21490428df75104 (patch)
tree572add21f294f73e4aa27d2cd07e7f7790529e1b /external
parent158ed4d059a875e6828c176ce7ecc4a221b331e3 (diff)
Update coreclr symbols url to new symbols feed (#28995)
* Update coreclr symbols url to new symbols feed * Unify Url by using DotNetAssetRootUrl property
Diffstat (limited to 'external')
-rw-r--r--external/runtime/runtime.depproj5
1 files changed, 2 insertions, 3 deletions
diff --git a/external/runtime/runtime.depproj b/external/runtime/runtime.depproj
index 1bbd38428c..120512d435 100644
--- a/external/runtime/runtime.depproj
+++ b/external/runtime/runtime.depproj
@@ -74,6 +74,7 @@
<PropertyGroup>
<SymbolPackagesDir>$(PackagesDir)symbolpackages/</SymbolPackagesDir>
+ <DotNetAssetRootUrl Condition="'$(DotNetAssetRootUrl)' == ''">https://dotnetfeed.blob.core.windows.net/dotnet-core/assets/</DotNetAssetRootUrl>
</PropertyGroup>
<Target Name="CalculateCoreCLRSymbolPackageProperties"
@@ -81,9 +82,7 @@
<ItemGroup>
<_CoreCLRSymbolPackagesToDownload Include="@(ReferenceCopyLocalPaths->'%(NuGetPackageId)')" Condition="$([System.String]::Copy('%(Identity)').EndsWith('System.Private.CoreLib.dll'))">
- <!-- If there is an asset root URL set (for orchestrated build), then append symbols to that to grab the coreclr symbol location. The orchestrated build uses a flat package layout. -->
- <Url Condition="'$(DotNetAssetRootUrl)'!=''">$(DotNetAssetRootUrl)symbols/%(NuGetPackageId).%(NuGetPackageVersion).symbols.nupkg</Url>
- <Url Condition="'$(DotNetAssetRootUrl)'==''">https://dotnet.myget.org/F/dotnet-core/symbols/%(NuGetPackageId)/%(NuGetPackageVersion)/</Url>
+ <Url>$(DotNetAssetRootUrl)symbols/%(NuGetPackageId).%(NuGetPackageVersion).symbols.nupkg</Url>
<DestinationFile>%(NuGetPackageId).%(NuGetPackageVersion).symbols.nupkg.zip</DestinationFile>
<UnzipDestinationDir>$(SymbolPackagesDir)/%(NuGetPackageId).%(NuGetPackageVersion)</UnzipDestinationDir>
</_CoreCLRSymbolPackagesToDownload>