1 instantiation of Parts
Microsoft.Build (1)
CanonicalError.cs (1)
318Parts parsedMessage = new Parts();
15 references to Parts
Microsoft.Build (15)
CanonicalError.cs (12)
211/// Initializes a new instance of the <see cref="Parts"/> class. 225internal int line = Parts.numberNotSpecified; 230internal int column = Parts.numberNotSpecified; 235internal int endLine = Parts.numberNotSpecified; 240internal int endColumn = Parts.numberNotSpecified; 276result = CanonicalError.Parts.numberNotSpecified; 292internal static Parts Parse(string message) 318Parts parsedMessage = new Parts(); 357parsedMessage.category = Parts.Category.Error; 361parsedMessage.category = Parts.Category.Warning; 395parsedMessage.category = Parts.Category.Error; 399parsedMessage.category = Parts.Category.Warning;
TaskLoggingHelper.cs (3)
1383CanonicalError.Parts messageParts = CanonicalError.Parse(lineOfText); 1404case CanonicalError.Parts.Category.Error: 1421case CanonicalError.Parts.Category.Warning: