Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit 95a5bc7

Browse files
author
jbeisner
committed
Ensure that the 'SetAzureProps' target runs before 'BlobStoragePartialRelativePath' is used.
1 parent e7bd33b commit 95a5bc7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build/Publish.targets

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
PublishNupkgToBlobFeed;
4040
PublishCliVersionBadge" />
4141

42-
<Target Name="GatherItemsForPattern">
42+
<Target Name="GatherItemsForPattern"
43+
DependsOnTargets="SetAzureProps">>
4344
<ItemGroup>
4445
<ForPublishing Include="@(GeneratedInstallers)"
4546
Condition=" '$(PublishNativeInstallers)' == 'true' "/>
@@ -60,7 +61,8 @@
6061
</ItemGroup>
6162
</Target>
6263

63-
<Target Name="PublishCliVersionBadge">
64+
<Target Name="PublishCliVersionBadge"
65+
DependsOnTargets="SetAzureProps">
6466
<ItemGroup>
6567
<CliVersionBadgeToUpload Include="$(VersionBadge)" />
6668
<CliVersionBadgeToUpload Include="$(CoherentBadge)"

0 commit comments

Comments
 (0)