11 instantiations of ItemDataCollectionValue
Microsoft.Build (1)
Evaluation\LazyItemEvaluator.OrderedItemDataCollection.cs (1)
184dictionaryValue = new ItemDataCollectionValue<I>(itemData.Item);
Microsoft.Build.Engine.UnitTests (10)
Definition\ItemDataCollectionValue_Tests.cs (10)
32var value = new ItemDataCollectionValue<int>(1); 40var value = new ItemDataCollectionValue<int>(1); 49var value = new ItemDataCollectionValue<int>(1); 58var value = new ItemDataCollectionValue<int>(1); 68var value = new ItemDataCollectionValue<int>(1); 78var value = new ItemDataCollectionValue<int>(1); 88var value = new ItemDataCollectionValue<int>(1); 97var value = new ItemDataCollectionValue<int>(1); 107var value = new ItemDataCollectionValue<int>(1); 117var value = new ItemDataCollectionValue<int>(1);
21 references to ItemDataCollectionValue
Microsoft.Build (10)
Evaluation\ItemSpec.cs (2)
338public IList<string> IntersectsWith(IReadOnlyDictionary<string, ItemDataCollectionValue<I>> itemsByNormalizedValue) 351if (itemsByNormalizedValue.TryGetValue(key, out var multiValue))
Evaluation\LazyItemEvaluator.OrderedItemDataCollection.cs (8)
35private Dictionary<string, ItemDataCollectionValue<I>> _dictionaryBuilder; 71ItemDataCollectionValue<I> oldDictionaryEntry = _dictionaryBuilder[oldNormalizedValue]; 82ItemDataCollectionValue<I> newDictionaryEntry = _dictionaryBuilder[newNormalizedValue]; 89ItemDataCollectionValue<I> dictionaryEntry = _dictionaryBuilder[newNormalizedValue]; 101public Dictionary<string, ItemDataCollectionValue<I>> Dictionary 107_dictionaryBuilder = new Dictionary<string, ItemDataCollectionValue<I>>(StringComparer.OrdinalIgnoreCase); 153if (dictionary.TryGetValue(itemValue, out var multiItem)) 182if (!_dictionaryBuilder.TryGetValue(key, out var dictionaryValue))
Microsoft.Build.Engine.UnitTests (11)
Definition\ItemDataCollectionValue_Tests.cs (11)
19private int[] MakeArray(ItemDataCollectionValue<int> value) 32var value = new ItemDataCollectionValue<int>(1); 40var value = new ItemDataCollectionValue<int>(1); 49var value = new ItemDataCollectionValue<int>(1); 58var value = new ItemDataCollectionValue<int>(1); 68var value = new ItemDataCollectionValue<int>(1); 78var value = new ItemDataCollectionValue<int>(1); 88var value = new ItemDataCollectionValue<int>(1); 97var value = new ItemDataCollectionValue<int>(1); 107var value = new ItemDataCollectionValue<int>(1); 117var value = new ItemDataCollectionValue<int>(1);