2 instantiations of PortableLibraryFile
Microsoft.Build.Tasks.Core (2)
GenerateResource.cs (1)
2662ResGenDependencies.PortableLibraryFile library = new ResGenDependencies.PortableLibraryFile(inFile);
ResGenDependencies.cs (1)
116PortableLibraryFile temp = portableLibrary ?? new();
17 references to PortableLibraryFile
Microsoft.Build.Tasks.Core (17)
GenerateResource.cs (7)
877List<ResGenDependencies.PortableLibraryFile> portableLibraryCacheInfo = process.PortableLibraryCacheInfo; 1390ResGenDependencies.PortableLibraryFile library = _cache.TryGetPortableLibraryInfo(sourceFileName); 1444private void AppendCachedOutputTaskItems(ResGenDependencies.PortableLibraryFile library, List<ITaskItem> cachedOutputFiles) 2333internal List<ResGenDependencies.PortableLibraryFile> PortableLibraryCacheInfo 2337private List<ResGenDependencies.PortableLibraryFile> _portableLibraryCacheInfo; 2415_portableLibraryCacheInfo = new List<ResGenDependencies.PortableLibraryFile>(); 2662ResGenDependencies.PortableLibraryFile library = new ResGenDependencies.PortableLibraryFile(inFile);
ResGenDependencies.cs (10)
37internal IDictionary<string, PortableLibraryFile> portableLibraries = new Dictionary<string, PortableLibraryFile>(); 114(ITranslator translator, ref PortableLibraryFile portableLibrary) => 116PortableLibraryFile temp = portableLibrary ?? new(); 120count => new Dictionary<string, PortableLibraryFile>(count)); 158internal PortableLibraryFile TryGetPortableLibraryInfo(string libraryPath) 161portableLibraries.TryGetValue(libraryPath, out PortableLibraryFile retVal); 175internal void UpdatePortableLibrary(PortableLibraryFile library) 177if (!portableLibraries.TryGetValue(library.FileName, out PortableLibraryFile cached) || !library.Equals(cached)) 383internal bool Equals(PortableLibraryFile otherLibrary)