81 строка
2.8 KiB
C#
81 строка
2.8 KiB
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
/// <summary>
|
|
/// Represent release notes.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Original from Cake build tool source:
|
|
/// https://github.com/cake-build/cake/blob/9828d7b246d332054896e52ba56983822feb3f05/src/Cake.Common/ReleaseNotes.cs
|
|
/// </remarks>
|
|
public sealed class ReleaseNotes
|
|
{
|
|
private readonly List<string> _notes;
|
|
|
|
/// <summary>
|
|
/// Gets the version.
|
|
/// </summary>
|
|
/// <value>The version.</value>
|
|
public SemVersion SemVersion { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the version.
|
|
/// </summary>
|
|
/// <value>The version.</value>
|
|
public Version Version { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the release notes.
|
|
/// </summary>
|
|
/// <value>The release notes.</value>
|
|
public IReadOnlyList<string> Notes => _notes;
|
|
|
|
/// <summary>
|
|
/// Gets the raw text of the line that <see cref="Version"/> was extracted from.
|
|
/// </summary>
|
|
/// <value>The raw text of the Version line.</value>
|
|
public string RawVersionLine { get; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ReleaseNotes"/> class.
|
|
/// </summary>
|
|
/// <param name="semVersion">The semantic version.</param>
|
|
/// <param name="notes">The notes.</param>
|
|
/// <param name="rawVersionLine">The raw text of the version line.</param>
|
|
public ReleaseNotes(SemVersion semVersion, IEnumerable<string> notes, string rawVersionLine)
|
|
: this(
|
|
semVersion?.AssemblyVersion ?? throw new ArgumentNullException(nameof(semVersion)),
|
|
semVersion,
|
|
notes,
|
|
rawVersionLine)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ReleaseNotes"/> class.
|
|
/// </summary>
|
|
/// <param name="version">The version.</param>
|
|
/// <param name="notes">The notes.</param>
|
|
/// <param name="rawVersionLine">The raw text of the version line.</param>
|
|
public ReleaseNotes(Version version, IEnumerable<string> notes, string rawVersionLine)
|
|
: this(
|
|
version ?? throw new ArgumentNullException(nameof(version)),
|
|
new SemVersion(version.Major, version.Minor, version.Build),
|
|
notes,
|
|
rawVersionLine)
|
|
{
|
|
}
|
|
|
|
private ReleaseNotes(Version version, SemVersion semVersion, IEnumerable<string> notes, string rawVersionLine)
|
|
{
|
|
Version = version ?? throw new ArgumentNullException(nameof(version));
|
|
SemVersion = semVersion ?? throw new ArgumentNullException(nameof(semVersion));
|
|
RawVersionLine = rawVersionLine;
|
|
_notes = new List<string>(notes ?? Enumerable.Empty<string>());
|
|
}
|
|
} |