13 references to CheckFactoryContext
Microsoft.Build (13)
BuildCheck\Infrastructure\BuildCheckManagerProvider.cs (13)
68
private readonly List<
CheckFactoryContext
> _checkRegistry;
75
_checkRegistry = new List<
CheckFactoryContext
>();
202
List<
CheckFactoryContext
> invalidChecksToRemove = new();
208
var
checkFactoryContext = new CheckFactoryContext(
238
private void SetupSingleCheck(
CheckFactoryContext
checkFactoryContext, string projectFullPath)
325
List<
CheckFactoryContext
> invalidChecksToRemove = new();
326
foreach (
CheckFactoryContext
checkFactoryContext in _checkRegistry)
350
private void RemoveInvalidChecks(List<
CheckFactoryContext
> checksToRemove, ICheckContext checkContext)
352
foreach (
var
checkToRemove in checksToRemove)
365
var
checkFactory = _checkRegistry.Find(c => c.MaterializedCheck == check);
374
foreach (
var
throttledCheck in _checkRegistry.FindAll(c => c.MaterializedCheck?.IsThrottled ?? false))
381
private void RemoveCheck(
CheckFactoryContext
checkToRemove)
480
foreach (
CheckFactoryContext
checkFactoryContext in _checkRegistry)