14 references to CheckFactoryContext
Microsoft.Build (14)
BuildCheck\Infrastructure\BuildCheckManagerProvider.cs (14)
68private readonly ConcurrentBag<CheckFactoryContext> _checkRegistry; 75_checkRegistry = new ConcurrentBag<CheckFactoryContext>(); 211List<CheckFactoryContext> invalidChecksToRemove = new(); 217var checkFactoryContext = new CheckFactoryContext( 247private void SetupSingleCheck(CheckFactoryContext checkFactoryContext, string projectFullPath) 334List<CheckFactoryContext> invalidChecksToRemove = new(); 335foreach (CheckFactoryContext checkFactoryContext in _checkRegistry) 359private void RemoveInvalidChecks(List<CheckFactoryContext> checksToRemove, ICheckContext checkContext) 361foreach (var checkToRemove in checksToRemove) 393private void RemoveCheck(CheckFactoryContext checkToRemove) 395var tempColl = new ConcurrentBag<CheckFactoryContext>(); 398while (_checkRegistry.TryTake(out var item)) 419foreach (var item in tempColl) 512foreach (CheckFactoryContext checkFactoryContext in _checkRegistry)