| 1234567891011121314151617181920212223242526272829303132 |
- using System.Collections.ObjectModel;
- namespace Artees.UnitySemVer
- {
- /// <summary>
- /// Information returned about a checked semantic version.
- /// <seealso cref="SemVer.Validate"/>
- /// </summary>
- public class SemVerValidationResult
- {
- /// <summary>
- /// Error messages. This collection is empty if the version is valid.
- /// </summary>
- public readonly ReadOnlyCollection<string> Errors;
-
- /// <summary>
- /// Automatically corrected semantic version.
- /// </summary>
- public readonly SemVer Corrected;
- /// <summary>
- /// Does the version meet the <a href="https://semver.org/">Semantic Versioning 2.0.0</a> specification?
- /// </summary>
- public bool IsValid => Errors.Count == 0;
- internal SemVerValidationResult(ReadOnlyCollection<string> errors, SemVer corrected)
- {
- Errors = errors;
- Corrected = corrected;
- }
- }
- }
|