Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Set build moniker to product build ID in prodcon (#27189)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmitche authored Feb 16, 2018
1 parent 5b09f73 commit 0049098
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/upload-tests.proj
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@

<!-- Properties used for submission by CloudTest.Helix.Targets-->
<BuildMoniker>$(CurrentDate)</BuildMoniker>
<BuildMoniker Condition="'$(IsOfficial)'=='true'">$(OfficialBuildId)</BuildMoniker>
<BuildMoniker Condition="'$(IsOfficial)'=='true' And '$(ProductBuildId)'==''">$(OfficialBuildId)</BuildMoniker>
<BuildMoniker Condition="'$(IsOfficial)'=='true' And '$(ProductBuildId)'!=''">$(ProductBuildId)</BuildMoniker>
<HelixArchLabel>$(ArchGroup)</HelixArchLabel>
<HelixConfigLabel>$(ConfigurationGroup)</HelixConfigLabel>
</PropertyGroup>
Expand Down

0 comments on commit 0049098

Please sign in to comment.