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