13 references to CheckFactoryContext
Microsoft.Build (13)
BuildCheck\Infrastructure\BuildCheckManagerProvider.cs (13)
68
private readonly List<
CheckFactoryContext
> _checkRegistry;
75
_checkRegistry = new List<
CheckFactoryContext
>();
197
List<
CheckFactoryContext
> invalidChecksToRemove = new();
203
var
checkFactoryContext = new CheckFactoryContext(
233
private void SetupSingleCheck(
CheckFactoryContext
checkFactoryContext, string projectFullPath)
320
List<
CheckFactoryContext
> invalidChecksToRemove = new();
321
foreach (
CheckFactoryContext
checkFactoryContext in _checkRegistry)
345
private void RemoveInvalidChecks(List<
CheckFactoryContext
> checksToRemove, ICheckContext checkContext)
347
foreach (
var
checkToRemove in checksToRemove)
360
var
checkFactory = _checkRegistry.Find(c => c.MaterializedCheck == check);
369
foreach (
var
throttledCheck in _checkRegistry.FindAll(c => c.MaterializedCheck?.IsThrottled ?? false))
376
private void RemoveCheck(
CheckFactoryContext
checkToRemove)
477
foreach (
CheckFactoryContext
checkFactoryContext in _checkRegistry)