Created
August 29, 2012 09:07
-
-
Save cyberzed/3508873 to your computer and use it in GitHub Desktop.
What would you expect when converting a .NET Version to SemVer
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
Environment.Version.Major | |
//4 | |
Environment.Version.Minor | |
//0 | |
Environment.Version.Build | |
//30319 | |
Environment.Version.Revision | |
//276 | |
//SemVer ex1. 4.0.30319+276 | |
//SemVer ex2. 4.0+30319.276 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment