Skip to content

Commit

Permalink
Merge pull request #1165 from microsoft/develop
Browse files Browse the repository at this point in the history
Update GlobalStaticVersion.props (#1164)
  • Loading branch information
TimothyMothra authored Jul 8, 2019
2 parents ca9afcd + 03b5959 commit d8cf807
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions GlobalStaticVersion.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@
as it will restart file versions so 2.4.0-beta1 may have higher
file version (like 2.4.0.2222) than 2.4.0-beta2 (like 2.4.0.1111)
-->
<SemanticVersionDate>2019-01-31</SemanticVersionDate>

<SemanticVersionDate>2019-07-08</SemanticVersionDate>
<!--
Pre-release version is used to distinguish internally built NuGet packages.
Pre-release version = Minutes since semantic version was set, divided by 5 (to make it fit in a UInt16 (max 65535 = ~7 months).
-->
<PreReleaseVersion Condition="'$(PreReleaseVersion)'==''">$([MSBuild]::Divide($([System.DateTime]::Now.Subtract($([System.DateTime]::Parse($(SemanticVersionDate)))).TotalMinutes), 5).ToString('F0'))</PreReleaseVersion>
</PropertyGroup>

Expand Down

0 comments on commit d8cf807

Please sign in to comment.