12 references to Load
Microsoft.Build.Tasks.Core (1)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
763assembly = Assembly.Load(File.ReadAllBytes(assemblyPath));
Microsoft.CodeAnalysis.CSharp.Scripting.Desktop.UnitTests (2)
InteractiveSessionReferencesTests.cs (1)
468return Assembly.Load(badTypeBytes);
ObjectFormatterTests.cs (1)
113a = Assembly.Load(stream.ToArray());
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Symbols\AnonymousTypesSymbolTests.cs (1)
237Assembly refAsm = Assembly.Load(image.ToArray());
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
Diagnostics\InMemoryAssemblyLoader.vb (1)
18Return Assembly.Load(bytes)
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
ReflectionUtilities.cs (1)
19return Assembly.Load(assembly.ToArray());
Microsoft.CodeAnalysis.Scripting (1)
Hosting\AssemblyLoader\DesktopAssemblyLoaderImpl.cs (1)
43return Assembly.Load(peImage);
Microsoft.CodeAnalysis.Test.Utilities (2)
Platform\Desktop\DesktopRuntimeUtil.cs (2)
77/// Loads given array of bytes as an assembly image using <see cref="Assembly.Load(byte[])"/> or <see cref="Assembly.ReflectionOnlyLoad(byte[])"/>. 93return Assembly.Load(bytes);
Microsoft.CodeAnalysis.UnitTests (1)
AssemblyUtilitiesTests.cs (1)
34var assembly = Assembly.Load(File.ReadAllBytes(_testFixture.Alpha));
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
VisualStudioMSBuildWorkspaceTests.cs (1)
3378return Assembly.Load(bytes);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\AppDomain.cs (1)
183public Assembly Load(byte[] rawAssembly) => Assembly.Load(rawAssembly);