7 references to ProjectFileOnly
Microsoft.Build (7)
BuildCheck\API\CheckConfiguration.cs (2)
23
EvaluationCheckScope = BuildCheck.EvaluationCheckScope.
ProjectFileOnly
,
88
return BuildCheck.EvaluationCheckScope.
ProjectFileOnly
;
BuildCheck\Checks\PropertiesUsageCheck.cs (3)
20
new CheckConfiguration() { RuleId = "BC0201", Severity = CheckResultSeverity.Warning, EvaluationCheckScope = EvaluationCheckScope.
ProjectFileOnly
});
25
new CheckConfiguration() { RuleId = "BC0202", Severity = CheckResultSeverity.Warning, EvaluationCheckScope = EvaluationCheckScope.
ProjectFileOnly
});
30
new CheckConfiguration() { RuleId = "BC0203", Severity = CheckResultSeverity.None, EvaluationCheckScope = EvaluationCheckScope.
ProjectFileOnly
});
BuildCheck\Infrastructure\CheckScopeClassifier.cs (2)
22
public static Func<EvaluationCheckScope, bool> IsScopingReady => (scope) => (scope is EvaluationCheckScope.
ProjectFileOnly
or EvaluationCheckScope.All) || IsScopingInitialized;
51
EvaluationCheckScope.
ProjectFileOnly
=> filePathOfEvent == projectFileFullPath,