Skip to content

Commit c48743d

Browse files
committed
Remove duplicate slash. Blob storage cares about this
1 parent 473b538 commit c48743d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ This package is an internal implementation of the .NET Core SDK and is not meant
558558
-->
559559
<Target Name="_DownloadAndExtractDotNetRuntime">
560560
<ItemGroup>
561-
<UrisToDownload Include="@(RemoteAssetBaseURL->'%(Identity)/$(DotNetRuntimeDownloadPath)')" />
561+
<UrisToDownload Include="@(RemoteAssetBaseURL->'%(Identity)$(DotNetRuntimeDownloadPath)')" />
562562
</ItemGroup>
563563

564564
<DownloadFile Condition=" !Exists('$(DotNetRuntimeArchive)') "

src/Installers/Windows/WindowsHostingBundle/Product.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
-->
8484
<ItemGroup>
8585
<UrisToDownload Remove="@(UrisToDownload)" />
86-
<UrisToDownload Include="@(RemoteAssetBaseURL->'%(Identity)/Runtime/%(RemoteAsset.Identity)')" />
86+
<UrisToDownload Include="@(RemoteAssetBaseURL->'%(Identity)Runtime/%(RemoteAsset.Identity)')" />
8787
</ItemGroup>
8888

8989
<DownloadFile Condition=" ! Exists('$(DepsPath)%(RemoteAsset.TargetFilename)') "

0 commit comments

Comments
 (0)