3 instantiations of AssemblySymbolLoader
Microsoft.DotNet.ApiSymbolExtensions (3)
AssemblySymbolLoader.cs (2)
74
return (new
AssemblySymbolLoader
(log, diagnosticOptions, resolveAssemblyReferences: true, includeInternalSymbols: respectInternals),
79
AssemblySymbolLoader loader =
new
(log, diagnosticOptions, resolveAssemblyReferences: atLeastOneReferencePath, includeInternalSymbols: respectInternals);
AssemblySymbolLoaderFactory.cs (1)
17
new
AssemblySymbolLoader
(log, resolveAssemblyReferences: shouldResolveReferences, includeInternalSymbols: includeInternalSymbols);
4 references to AssemblySymbolLoader
Microsoft.DotNet.ApiSymbolExtensions (4)
AssemblySymbolLoader.cs (3)
64
public static (
AssemblySymbolLoader
, Dictionary<string, IAssemblySymbol>) CreateFromFiles(
79
AssemblySymbolLoader
loader = new(log, diagnosticOptions, resolveAssemblyReferences: atLeastOneReferencePath, includeInternalSymbols: respectInternals);
108
/// Creates a new instance of the <see cref="
AssemblySymbolLoader
"/> class.
AssemblySymbolLoaderFactory.cs (1)
12
/// <param name="includeInternalSymbols">True to include internal API when reading assemblies from the <see cref="
AssemblySymbolLoader
"/> created.</param>