Class AzureLogIssue
- Namespace
- DotNetDo
- Assembly
- DotNetDo.Core.dll
Fields attached to an Azure Pipelines error or warning timeline issue.
public sealed record AzureLogIssue : IEquatable<AzureLogIssue>Properties
Code
The diagnostic or error code associated with the issue.
public string? Code { get; init; }Property Value
ColumnNumber
The one-based source column associated with the issue.
public long? ColumnNumber { get; init; }Property Value
- long?
LineNumber
The one-based source line associated with the issue.
public long? LineNumber { get; init; }Property Value
- long?
SourcePath
The source file path associated with the issue.
public RelativePath? SourcePath { get; init; }Property Value
Type
Whether the issue is recorded as an error or warning.
public required AzureIssueType Type { get; init; }