24 references to EvaluationLocationKind
Microsoft.Build (11)
Evaluation\Profiler\EvaluationLocationMarkdownPrettyPrinter.cs (1)
33protected override string NormalizeExpression(string description, EvaluationLocationKind kind)
Evaluation\Profiler\EvaluationLocationPrettyPrinterBase.cs (4)
31protected abstract string NormalizeExpression(string description, EvaluationLocationKind kind); 48protected static string GetElementOrConditionText(string description, EvaluationLocationKind kind) 55if (kind == EvaluationLocationKind.Condition) 60if (kind == EvaluationLocationKind.Glob)
Evaluation\Profiler\EvaluationLocationTabSeparatedPrettyPrinter.cs (1)
32protected override string NormalizeExpression(string description, EvaluationLocationKind kind)
Logging\BinaryLogger\BuildEventArgsReader.cs (2)
1760var kind = (EvaluationLocationKind)ReadInt32();
Logging\EvaluationLocationIdAgnosticComparer.cs (1)
47hashCode = (hashCode * -1521134295) + EqualityComparer<EvaluationLocationKind>.Default.GetHashCode(obj.Kind);
Logging\ProfilerLogger.cs (1)
162.Where(key => key.Kind == EvaluationLocationKind.Glob)
LogMessagePacketBase.cs (1)
1544(EvaluationLocationKind)kind);
Microsoft.Build.Engine.UnitTests (3)
BuildEventArgsSerialization_Tests.cs (3)
783new EvaluationLocation(1, 0, EvaluationPass.InitialProperties, "desc1", "file1", 7, "element1", "description", EvaluationLocationKind.Condition), 787new EvaluationLocation(0, null, EvaluationPass.LazyItems, "desc2", "file1", null, "element2", "description2", EvaluationLocationKind.Glob), 791new EvaluationLocation(2, 0, EvaluationPass.Properties, "desc2", "file1", null, "element2", "description2", EvaluationLocationKind.Element),
Microsoft.Build.Framework (10)
Profiler\EvaluationLocation.cs (10)
101public EvaluationLocationKind Kind { get; } 110return new EvaluationLocation(parentId, evaluationPass, evaluationDescription, file, line, "Condition", condition, kind: EvaluationLocationKind.Condition); 118element?.OuterElement, kind: EvaluationLocationKind.Element); 125return new EvaluationLocation(parentId, evaluationPass, evaluationDescription, file, line, "Glob", globDescription, kind: EvaluationLocationKind.Glob); 132PassDefaultDescription[EvaluationPass.TotalGlobbing], file: null, kind: EvaluationLocationKind.Glob, 143int? line, string elementName, string elementDescription, EvaluationLocationKind kind) 163public EvaluationLocation(long? parentId, EvaluationPass evaluationPass, string evaluationPassDescription, string file, int? line, string elementName, string elementDescription, EvaluationLocationKind kind) 175public EvaluationLocation(EvaluationPass evaluationPass, string evaluationPassDescription, string file, int? line, string elementName, string elementDescription, EvaluationLocationKind kind) 267hashCode = (hashCode * -1521134295) + EqualityComparer<EvaluationLocationKind>.Default.GetHashCode(Kind); 274null, null, default(EvaluationLocationKind));