2 instantiations of CachedAssemblyEntry
Microsoft.Build.Tasks.Core (2)
CodeTaskFactory.cs (1)
937s_compiledTaskCache.TryAdd(fullSpec, new TaskFactoryUtilities.CachedAssemblyEntry(assembly, cachedAssemblyPath));
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
805CompiledAssemblyCache.TryAdd(taskInfo, new TaskFactoryUtilities.CachedAssemblyEntry(assembly, cachedAssemblyPath));
6 references to CachedAssemblyEntry
Microsoft.Build.Tasks.Core (6)
CodeTaskFactory.cs (3)
87private static readonly ConcurrentDictionary<FullTaskSpecification, TaskFactoryUtilities.CachedAssemblyEntry> s_compiledTaskCache = new ConcurrentDictionary<FullTaskSpecification, TaskFactoryUtilities.CachedAssemblyEntry>(); 834if (s_compiledTaskCache.TryGetValue(fullSpec, out TaskFactoryUtilities.CachedAssemblyEntry cachedEntry))
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (3)
87private static readonly ConcurrentDictionary<RoslynCodeTaskFactoryTaskInfo, TaskFactoryUtilities.CachedAssemblyEntry> CompiledAssemblyCache = new ConcurrentDictionary<RoslynCodeTaskFactoryTaskInfo, TaskFactoryUtilities.CachedAssemblyEntry>(); 684if (CompiledAssemblyCache.TryGetValue(taskInfo, out TaskFactoryUtilities.CachedAssemblyEntry cachedEntry))