14 implementations of LoadFromPath
AnalyzerRunner (1)
AssemblyLoader.cs (1)
20public Assembly LoadFromPath(string fullPath)
CodeStyleConfigFileGenerator (1)
Program.cs (1)
296public Assembly LoadFromPath(string fullPath) => Assembly.LoadFrom(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)
159public Assembly LoadFromPath(string originalAnalyzerPath)
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\HostDiagnosticAnalyzerProvider.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.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)
159public Assembly LoadFromPath(string originalAnalyzerPath)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
VisualStudioMSBuildWorkspaceTests.cs (1)
3363public Assembly LoadFromPath(string fullPath)
Microsoft.VisualStudio.LanguageServices (1)
Diagnostics\VisualStudioDiagnosticAnalyzerProvider.Loader.cs (1)
29public Assembly LoadFromPath(string fullPath)
Roslyn.VisualStudio.Next.UnitTests (1)
Remote\RemoteHostClientServiceFactoryTests.cs (1)
90public Assembly LoadFromPath(string fullPath)
6 references to LoadFromPath
Microsoft.CodeAnalysis (2)
DiagnosticAnalyzer\AnalyzerFileReference.cs (1)
675_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.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)
40return _fallbackLoader.LoadFromPath(fullPath);
VBCSCompiler (1)
src\Compilers\Server\VBCSCompiler\AnalyzerConsistencyChecker.cs (1)
111loadedAssemblies.Add(loader.LoadFromPath(resolvedPath));