Last active
June 2, 2020 23:14
-
-
Save ttkoma/38ba950dd0f92b134c798a63b21f93ab to your computer and use it in GitHub Desktop.
Autonumbering version .net core >=3.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<PropertyGroup Label="Assembly Versioning"> | |
<VersionMajor>1</VersionMajor> | |
<VersionMinor>0</VersionMinor> | |
<Build>$([System.DateTime]::Now.Date.Subtract($([System.DateTime]::Parse(`2000-01-01`))).TotalDays)</Build> | |
<Revision>$([System.Convert]::ToUInt16( $([MSBuild]::Divide($([System.DateTime]::Now.TimeOfDay.TotalSeconds), 2 )) ))</Revision> | |
<AssemblyVersion>$(VersionMajor).$(VersionMinor).$(Build).$(Revision)</AssemblyVersion> | |
<FileVersion>$(AssemblyVersion)</FileVersion> | |
<InformationalVersion>$(AssemblyVersion)-preview</InformationalVersion> | |
</PropertyGroup> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment