↧
Answer by Eli Sadoff for Semantic versioning in WPF projects
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...
View ArticleAnswer by Asnivor for Semantic versioning in WPF projects
I use this method in my WPF applications (although its for the fileversion rather than the assembly version - I always have these the same in my small projects):public static string...
View ArticleSemantic versioning in WPF projects
We are starting to use semantic versioning for some of our projects here, and are struggling to incorporate it into the .NET world. Semantic versioning seems to use 3 digits, a major, minor and patch....
View Article