19 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.EditorFeatures2.UnitTests (1)
Diagnostics\InMemoryAssemblyLoader.vb (1)
16Public Function LoadFromPath(fullPath As String) As Assembly Implements IAnalyzerAssemblyLoader.LoadFromPath
Microsoft.CodeAnalysis.LanguageServer (1)
HostWorkspace\VSCodeAnalyzerLoaderProviderFactory.cs (1)
43public 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.VisualBasic.CommandLine.UnitTests (1)
TouchedFileLoggingTests.vb (1)
208Public Function LoadFromPath(fullPath As String) As Assembly Implements IAnalyzerAssemblyLoader.LoadFromPath
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.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();
8 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.EditorFeatures2.UnitTests (1)
Diagnostics\InMemoryAssemblyLoader.vb (1)
16Public Function LoadFromPath(fullPath As String) As Assembly Implements IAnalyzerAssemblyLoader.LoadFromPath
Microsoft.CodeAnalysis.Features (1)
Extensions\IExtensionAssemblyLoaderProvider.cs (1)
100=> assemblyLoader.LoadFromPath(assemblyFilePath);
Microsoft.CodeAnalysis.LanguageServer (1)
HostWorkspace\VSCodeAnalyzerLoaderProviderFactory.cs (1)
52return defaultLoader.LoadFromPath(fullPath);
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (1)
TouchedFileLoggingTests.vb (1)
208Public Function LoadFromPath(fullPath As String) As Assembly Implements IAnalyzerAssemblyLoader.LoadFromPath
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));