18 implementations of LoadFromPath
AnalyzerRunner (1)
AssemblyLoader.cs (1)
20public Assembly LoadFromPath(string fullPath)
CodeStyleConfigFileGenerator (1)
Program.cs (1)
293public Assembly LoadFromPath(string fullPath) => Assembly.LoadFrom(fullPath);
GenerateDocumentationAndConfigFiles (1)
Program.cs (1)
1948public Assembly LoadFromPath(string fullPath)
GenerateRulesMissingDocumentation (1)
Program.cs (1)
188public Assembly LoadFromPath(string fullPath)
Microsoft.AspNetCore.Analyzer.Testing (1)
DiagnosticProject.cs (1)
99public Assembly LoadFromPath(string fullPath)
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\AnalyzerAssemblyLoader.cs (1)
220public Assembly LoadFromPath(string originalPath)
Microsoft.CodeAnalysis.LanguageServer (1)
HostWorkspace\VSCodeAnalyzerLoaderProviderFactory.cs (1)
44public Assembly LoadFromPath(string fullPath)
Microsoft.CodeAnalysis.Scripting (1)
Hosting\CommandLine\NotImplementedAnalyzerLoader.cs (1)
19public Assembly LoadFromPath(string fullPath)
Microsoft.CodeAnalysis.Test.Utilities (1)
Mocks\TestAnalyzerAssemblyLoader.cs (1)
31public Assembly LoadFromPath(string fullPath)
Microsoft.CodeAnalysis.UnitTests (1)
Analyzers\AnalyzerFileReferenceTests.cs (1)
751public Assembly LoadFromPath(string fullPath) => throw new Exception();
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\DiagnosticAnalyzer\AnalyzerAssemblyLoader.cs (1)
220public Assembly LoadFromPath(string originalPath)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
VisualStudioMSBuildWorkspaceTests.cs (1)
3379public Assembly LoadFromPath(string fullPath)
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
SolutionTests\SolutionWithSourceGeneratorTests.cs (1)
1396public Assembly LoadFromPath(string fullPath)
Microsoft.VisualStudio.LanguageServices (1)
Diagnostics\VisualStudioDiagnosticAnalyzerProvider.Loader.cs (1)
27public Assembly LoadFromPath(string fullPath)
Roslyn.VisualStudio.Next.UnitTests (3)
Remote\RemoteHostClientServiceFactoryTests.cs (1)
90public Assembly LoadFromPath(string fullPath)
Remote\SnapshotSerializationTests.cs (2)
712public Assembly LoadFromPath(string fullPath) 744public Assembly LoadFromPath(string fullPath)
VBCSCompiler.UnitTests (1)
AnalyzerConsistencyCheckerTests.cs (1)
252public Assembly LoadFromPath(string fullPath) => throw new Exception();
6 references to LoadFromPath
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);
Microsoft.CodeAnalysis.LanguageServer (1)
HostWorkspace\VSCodeAnalyzerLoaderProviderFactory.cs (1)
53return defaultLoader.LoadFromPath(fullPath);
Microsoft.VisualStudio.LanguageServices (1)
Diagnostics\VisualStudioDiagnosticAnalyzerProvider.Loader.cs (1)
38return _fallbackLoader.LoadFromPath(fullPath);
VBCSCompiler (1)
src\Compilers\Server\VBCSCompiler\AnalyzerConsistencyChecker.cs (1)
112loadedAssemblies.Add(loader.LoadFromPath(resolvedPath));