/// <summary> /// Initializes a new instance of the <see cref="VersionInfo"/> class. /// </summary> /// <param name="other"> /// The other. /// </param> public VersionInfo(VersionInfo other) : this(other.VersionNumber, other.CreatedDate, other.X86Package, other.X64Package) { }
/// <summary> /// The get change log. /// </summary> /// <param name="fromVersion"> /// The from version. /// </param> /// <param name="toVersion"> /// The to version. /// </param> /// <returns> /// The <see cref="string"/>. /// </returns> public string GetChangeLog(VersionInfo fromVersion, VersionInfo toVersion) { return null; }