1 write to _assemblies
Microsoft.Build.Tasks.Core (1)
AssemblyRegistrationCache.cs (1)
68translator.Translate(ref _assemblies);
9 references to _assemblies
Microsoft.Build.Tasks.Core (5)
AssemblyRegistrationCache.cs (5)
34ErrorUtilities.VerifyThrow(_assemblies.Count == _typeLibraries.Count, "Internal assembly and type library lists should have the same number of entries in AssemblyRegistrationCache"); 35return _assemblies.Count; 44_assemblies.Add(assemblyPath); 53ErrorUtilities.VerifyThrow((index >= 0) && (index < _assemblies.Count), "Invalid index in the call to AssemblyRegistrationCache.GetEntry"); 54assemblyPath = _assemblies[index];
Microsoft.Build.Tasks.UnitTests (4)
AssemblyRegistrationCache_Tests.cs (4)
46arc2._assemblies.Count.ShouldBe(arc._assemblies.Count); 47arc2._assemblies[0].ShouldBe(arc._assemblies[0]);