Replaced SemanticVersion.cs with the unmodified SemVersion.cs from original author.

This commit is contained in:
2018-03-23 21:34:14 +01:00
parent 09d362eac1
commit 64a2c35c0c
20 changed files with 2022 additions and 944 deletions

View File

@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using Katteker;
using Semver;
namespace KattekerCreator
{
@ -16,7 +17,7 @@ namespace KattekerCreator
public string Executable { get; set; }
public string CompanyName { get; set; }
public string Description { get; set; }
public SemanticVersion Version { get; set; }
public SemVersion Version { get; set; }
public Version LegacyVersion => Version.ToSystemVersion();
public string HelpUrl { get; set; }
public long InstallSize { get; set; }