34 references to LoadFrom
AnalyzerRunner (3)
AssemblyLoader.cs (1)
22return Assembly.LoadFrom(fullPath);
CodeRefactoringRunner.cs (2)
204assemblies.Add(Assembly.LoadFrom(path)); 212assemblies.Add(Assembly.LoadFrom(file));
Aspire.Hosting.Testing.Tests (1)
TestingBuilderTests.cs (1)
52var appHostAssembly = Assembly.LoadFrom(Path.Combine(AppContext.BaseDirectory, testProjectAssemblyPath));
Aspire.Playground.Tests (1)
Infrastructure\DistributedApplicationExtensions.cs (1)
237var projectAssembly = Assembly.LoadFrom(projectAssemblyPath);
BuildActionTelemetryTable (1)
Program.cs (1)
98return Assembly.LoadFrom(path);
CodeStyleConfigFileGenerator (1)
Program.cs (1)
296public Assembly LoadFromPath(string fullPath) => Assembly.LoadFrom(fullPath);
dotnet-svcutil.xmlserializer (1)
Microsoft\Tools\ServiceModel\SvcUtil\InputModule.cs (1)
219return Assembly.LoadFrom(path);
dotnet-svcutil-lib (2)
CommandProcessorOptions.cs (1)
841assembly = Assembly.LoadFrom(assemblyFile.FullName);
Metadata\ServiceDescriptor.cs (1)
114Assembly assembly = Assembly.LoadFrom($"{toolPath}/{tfn}/Microsoft.Svcutil.NamedPipeMetadataImporter.dll");
GenerateDocumentationAndConfigFiles (2)
Program.cs (2)
881_ = Assembly.LoadFrom(assemblyPath); 1950return Assembly.LoadFrom(fullPath);
GenerateRulesMissingDocumentation (1)
Program.cs (1)
190return Assembly.LoadFrom(fullPath);
Microsoft.AspNetCore.Analyzer.Testing (1)
DiagnosticProject.cs (1)
101return Assembly.LoadFrom(fullPath);
Microsoft.Build (2)
BackEnd\Components\ProjectCache\ProjectCacheService.cs (1)
368return Assembly.LoadFrom(resolverPath);
BackEnd\Components\SdkResolution\SdkResolverLoader.cs (1)
248return Assembly.LoadFrom(resolverPath);
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (1)
TestUtilities\ErrorLoggerEngine.cs (1)
26var assembly = Assembly.LoadFrom("Microsoft.Build.dll");
Microsoft.Build.Tasks.Core (2)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (2)
603return Assembly.LoadFrom(path); 610return Assembly.LoadFrom(path);
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
EditorTestCompositions.cs (1)
24Assembly.LoadFrom("Microsoft.VisualStudio.Platform.VSEditor.dll"),
Microsoft.CodeAnalysis.Test.Utilities (1)
Mocks\TestAnalyzerAssemblyLoader.cs (1)
32=> (_loadFromPath != null) ? _loadFromPath(fullPath) : Assembly.LoadFrom(fullPath);
Microsoft.DotNet.AsmDiff (1)
DiffCSharpWriter.cs (1)
381.Select(Assembly.LoadFrom);
Microsoft.ML.Core (1)
ComponentModel\AssemblyLoadingUtils.cs (1)
214assembly = Assembly.LoadFrom(path);
MSBuildTaskHost (2)
TaskEngineAssemblyResolver.cs (1)
119return Assembly.LoadFrom(_taskAssemblyFile);
TypeLoader.cs (1)
304_loadedAssembly = Assembly.LoadFrom(_assemblyLoadInfo.AssemblyFile);
PresentationFramework (1)
System\Windows\Documents\Serialization\SerializerDescriptor.cs (1)
119Assembly plugIn = Assembly.LoadFrom(assemblyPath);
Roslyn.VisualStudio.Next.UnitTests (1)
Remote\SnapshotSerializationTests.cs (1)
743=> Assembly.LoadFrom(_map[fullPath]);
System.ComponentModel.Composition (1)
System\ComponentModel\Composition\Hosting\AssemblyCatalog.cs (1)
570return Assembly.LoadFrom(codeBase);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Activator.cs (1)
54Assembly assembly = Assembly.LoadFrom(assemblyFile);
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (2)
364return LoadFrom(requestedAssemblyPath); 414public static Assembly UnsafeLoadFrom(string assemblyFile) => LoadFrom(assemblyFile);
System.Private.Xml (1)
System\Xml\Serialization\Compilation.cs (1)
202serializer = Assembly.LoadFrom(serializerName);
System.Windows.Forms (1)
System\Resources\AssemblyNamesTypeResolutionService.cs (1)
44result = Assembly.LoadFrom(GetPathOfAssembly(assemblyName));
System.Windows.Forms.Design (1)
System\Drawing\Design\ToolboxItem.cs (1)
516a = Assembly.LoadFrom(assemblyName.CodeBase);