Class DotnetBuildOutputLine
- Namespace
- SunamoDevCode.Data
- Assembly
- SunamoDevCode.dll
Represents a single line from dotnet build output containing error or warning information.
public class DotnetBuildOutputLine
- Inheritance
-
DotnetBuildOutputLine
- Inherited Members
- Extension Methods
Properties
Column
Gets or sets the column number where the error/warning occurred.
public int Column { get; set; }
Property Value
ErrorCode
Gets or sets the error code (e.g., CS0103, CS0246).
public string ErrorCode { get; set; }
Property Value
Line
Gets or sets the line number where the error/warning occurred.
public int Line { get; set; }
Property Value
Message
Gets or sets the error/warning message text.
public string Message { get; set; }
Property Value
Path
Gets or sets the file path where the error/warning occurred.
public string Path { get; set; }
Property Value
Type
Gets or sets the type of message (error, warning, etc.).
public string Type { get; set; }
Property Value
Methods
Deconstruct(out string, out int, out int, out string, out string, out string)
Deconstructs the build output line into individual components.
public void Deconstruct(out string path, out int line, out int column, out string type, out string errorCode, out string message)