According to MSDN the way that versioning in .NET works is Major.Minor.Build.Revision
. You can do this without defining a revision, but note that in C#, if the revision is undefined Version#Revision
will return -1
. If you are using the .NET Framework it is likely worthwhile to follow their semantic versioning principles.
↧
Answer by Eli Sadoff for Semantic versioning in WPF projects
↧