5 implementations of LoadFromPath
CodeStyleConfigFileGenerator (1)
Program.cs (1)
297public Assembly LoadFromPath(string fullPath) => Assembly.LoadFrom(fullPath);
GenerateDocumentationAndConfigFiles (1)
Program.cs (1)
1950public Assembly LoadFromPath(string fullPath)
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\AnalyzerAssemblyLoader.cs (1)
220public Assembly LoadFromPath(string originalPath)
Microsoft.CodeAnalysis.Scripting (1)
Hosting\CommandLine\NotImplementedAnalyzerLoader.cs (1)
19public Assembly LoadFromPath(string fullPath)
Microsoft.CodeAnalysis.Workspaces (1)
src\roslyn\src\Compilers\Core\Portable\DiagnosticAnalyzer\AnalyzerAssemblyLoader.cs (1)
220public Assembly LoadFromPath(string originalPath)
5 references to LoadFromPath
dotnet-format (1)
Analyzers\AnalyzerReferenceInformationProvider.cs (1)
69analyzerAssembly = loader.LoadFromPath(path);
Microsoft.CodeAnalysis (2)
DiagnosticAnalyzer\AnalyzerFileReference.cs (1)
678_lazyAssembly = _assemblyLoader.LoadFromPath(FullPath);
DiagnosticAnalyzer\IAnalyzerAssemblyLoader.cs (1)
16/// Before an analyzer assembly is loaded with <see cref="LoadFromPath(string)"/>,
Microsoft.CodeAnalysis.Features (1)
Extensions\IExtensionAssemblyLoaderProvider.cs (1)
100=> assemblyLoader.LoadFromPath(assemblyFilePath);
VBCSCompiler (1)
src\roslyn\src\Compilers\Server\VBCSCompiler\AnalyzerConsistencyChecker.cs (1)
112loadedAssemblies.Add(loader.LoadFromPath(resolvedPath));