3 overrides of ManifestModule
System.Private.CoreLib (1)
System\Reflection\Runtime\Assemblies\RuntimeAssemblyInfo.cs (1)
48public abstract override Module ManifestModule { get; }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
33public override Module ManifestModule
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
29public sealed override Module ManifestModule => GetRoManifestModule();
21 references to ManifestModule
CSharpSyntaxGenerator (1)
Program.cs (1)
86var programName = " " + typeof(Program).GetTypeInfo().Assembly.ManifestModule.Name;
csi (1)
Csi.cs (1)
24string csiDirectory = Path.GetDirectoryName(typeof(Csi).GetTypeInfo().Assembly.ManifestModule.FullyQualifiedName);
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\AssemblyLoadsTracker.cs (1)
130Guid mvid = args.LoadedAssembly.ManifestModule.ModuleVersionId;
Microsoft.Build.Tasks.Core (1)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
92private static readonly Lazy<string> ThisAssemblyDirectoryLazy = new Lazy<string>(() => Path.GetDirectoryName(typeof(RoslynCodeTaskFactory).GetTypeInfo().Assembly.ManifestModule.FullyQualifiedName));
Microsoft.CodeAnalysis (2)
CommandLine\CommonCompiler.cs (1)
860sb.Builder.Append(type.Assembly.ManifestModule.ModuleVersionId.ToString());
Compilation\DeterministicKeyBuilder.cs (1)
110writer.Write("mvid", GetGuidValue(type.Assembly.ManifestModule.ModuleVersionId));
Microsoft.CodeAnalysis.Scripting (2)
Hosting\AssemblyLoader\InteractiveAssemblyLoader.cs (1)
289loadedAssemblyWithEqualNameAndVersionOpt.Assembly.ManifestModule.ModuleVersionId == mvid)
Hosting\Resolvers\RuntimeMetadataReferenceResolver.cs (1)
32PathUtilities.GetDirectoryName(typeof(object).GetTypeInfo().Assembly.ManifestModule.FullyQualifiedName) : null;
Microsoft.DotNet.HotReload.WebAssembly.Browser (1)
src\sdk\src\Dotnet.Watch\HotReloadAgent\HotReloadAgent.cs (1)
239var type = assembly.ManifestModule.ResolveType(updatedType);
Microsoft.Extensions.DotNetDeltaApplier (1)
src\sdk\src\Dotnet.Watch\HotReloadAgent\HotReloadAgent.cs (1)
239var type = assembly.ManifestModule.ResolveType(updatedType);
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\ApplicationServices\WindowsFormsApplicationBase.vb (1)
997Return entry.ManifestModule.ModuleVersionId.ToString()
rzc (1)
DefaultExtensionDependencyChecker.cs (1)
113if (item.Mvid != item.Assembly.ManifestModule.ModuleVersionId)
System.Configuration.ConfigurationManager (2)
System\Configuration\ClientConfigPaths.cs (2)
67ApplicationUri = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, exeAssembly.ManifestModule.Name); 263else if (Uri.TryCreate(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, assembly.ManifestModule.Name), UriKind.Absolute, out Uri codeBase))
System.Private.CoreLib (3)
System\Reflection\Runtime\MethodInfos\RuntimeSyntheticMethodInfo.cs (1)
139return this.DeclaringType.Assembly.ManifestModule;
System\Reflection\Runtime\Modules\RuntimeModule.cs (1)
77Debug.Assert(this.Equals(Assembly.ManifestModule)); // We only support single-module assemblies so we have to be the manifest module.
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (1)
356return Assembly.ManifestModule;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
35get { return UnderlyingAssembly.ManifestModule; }
System.Xaml (1)
System\Xaml\Runtime\DynamicMethodRuntime.cs (1)
468return new DynamicMethod(name, returnType, argTypes, _localAssembly.ManifestModule);
VBCSCompiler (1)
src\roslyn\src\Compilers\Server\VBCSCompiler\AnalyzerConsistencyChecker.cs (1)
129var loadedAssemblyMvid = loadedAssembly.ManifestModule.ModuleVersionId;
vbi (1)
Vbi.vb (1)
18Dim vbiDirectory = Path.GetDirectoryName(GetType(Vbi).GetTypeInfo().Assembly.ManifestModule.FullyQualifiedName)