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