1 instantiation of Parts
Microsoft.Build.Tasks.CodeAnalysis (1)
CanonicalError.cs (1)
279Parts parsedMessage = new Parts();
15 references to Parts
Microsoft.Build.Tasks.CodeAnalysis (15)
CanonicalError.cs (10)
160/// Initializes a new instance of the <see cref="Parts"/> class. 174internal int line = Parts.numberNotSpecified; 179internal int column = Parts.numberNotSpecified; 184internal int endLine = Parts.numberNotSpecified; 189internal int endColumn = Parts.numberNotSpecified; 245result = CanonicalError.Parts.numberNotSpecified; 257internal static Parts? Parse(string message) 279Parts parsedMessage = new Parts(); 317parsedMessage.category = Parts.Category.Error; 321parsedMessage.category = Parts.Category.Warning;
Vbc.cs (5)
719CanonicalError.Parts? parts = CanonicalError.Parse(singleLine); 724else if ((parts.category == CanonicalError.Parts.Category.Error || 725parts.category == CanonicalError.Parts.Category.Warning) && 726parts.column == CanonicalError.Parts.numberNotSpecified) 728if (parts.line != CanonicalError.Parts.numberNotSpecified)