Result of a packaging operation.
public sealed record PackagingResult(bool Success, IReadOnlyCollection<PackagingArtifact> Artifacts, IReadOnlyCollection<PackagingIssue> Issues) : IEquatable<PackagingResult>
kind:method, kind:property, kind:ctor. Press Esc to clear.PackagingResult(Boolean, IReadOnlyCollection<PackagingArtifact>, IReadOnlyCollection<PackagingIssue>)Result of a packaging operation.ArtifactsCollection of produced artifacts.IssuesLogged issues during the run.SuccessIndicates whether the pipeline completed without blocking errors.