You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
418 B

  1. namespace Semver
  2. {
  3. internal static class SemVersionExtension
  4. {
  5. public static string VersionOnly(this SemVersion version)
  6. {
  7. return "" + version.Major + "." + version.Minor + "." + version.Patch;
  8. }
  9. public static string ShortVersion(this SemVersion version)
  10. {
  11. return version.Major + "." + version.Minor;
  12. }
  13. }
  14. }