Skip to content

Commit

Permalink
remove unnecessary dot at end of full version string
Browse files Browse the repository at this point in the history
  • Loading branch information
makmu committed Mar 10, 2016
1 parent 4b14fa8 commit 5f48067
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Version
public const string Label = ReleaseLabel.Dev;
public const string AdditionalReleaseInformation = "";
public const string Current = Major + "." + Minor + "." + Patch;
public const string FullCurrent = Current + "-" + Label + "." + AdditionalReleaseInformation;
public const string FullCurrent = Current + "-" + Label + AdditionalReleaseInformation;
}

class ReleaseLabel
Expand Down

0 comments on commit 5f48067

Please sign in to comment.