4 overrides of FullyQualifiedName
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
652
public override string
FullyQualifiedName
=> ManifestModuleName;
src\System\Reflection\RuntimeModule.cs (1)
416
public override string
FullyQualifiedName
=> GetFullyQualifiedName();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
31
public override string
FullyQualifiedName
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
40
public sealed override string
FullyQualifiedName
=> _fullyQualifiedName;
24 references to FullyQualifiedName
csi (1)
Csi.cs (1)
24
string csiDirectory = Path.GetDirectoryName(typeof(Csi).GetTypeInfo().Assembly.ManifestModule.
FullyQualifiedName
);
Microsoft.Build (1)
FrameworkLocationHelper.cs (1)
1425
Path.GetDirectoryName(typeof(object).Module.
FullyQualifiedName
),
Microsoft.Build.Engine.UnitTests (1)
BackEnd\TaskRegistry_Tests.cs (1)
86
_testTaskLocation = typeof(TaskRegistry_Tests).GetTypeInfo().Assembly.ManifestModule.
FullyQualifiedName
;
Microsoft.Build.Tasks.Core (1)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
92
private static readonly Lazy<string> ThisAssemblyDirectoryLazy = new Lazy<string>(() => Path.GetDirectoryName(typeof(RoslynCodeTaskFactory).GetTypeInfo().Assembly.ManifestModule.
FullyQualifiedName
));
Microsoft.Build.Tasks.UnitTests (3)
AssemblyDependency\Node\OutOfProcRarNode_Tests.cs (3)
39
SearchPaths = [Path.GetDirectoryName(typeof(object).Module.
FullyQualifiedName
)],
78
SearchPaths = [Path.GetDirectoryName(typeof(object).Module.
FullyQualifiedName
)],
104
SearchPaths = [Path.GetDirectoryName(typeof(object).Module.
FullyQualifiedName
)],
Microsoft.Build.Utilities.Core (1)
FrameworkLocationHelper.cs (1)
1425
Path.GetDirectoryName(typeof(object).Module.
FullyQualifiedName
),
Microsoft.Build.Utilities.UnitTests (1)
ToolLocationHelper_Tests.cs (1)
509
Path.GetDirectoryName(typeof(object).GetTypeInfo().Module.
FullyQualifiedName
),
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
InteractiveSessionTests.cs (1)
1764
#r ""{typeof(CSharpScript).GetTypeInfo().Assembly.ManifestModule.
FullyQualifiedName
}""
Microsoft.CodeAnalysis.Scripting (1)
Hosting\Resolvers\RuntimeMetadataReferenceResolver.cs (1)
32
PathUtilities.GetDirectoryName(typeof(object).GetTypeInfo().Assembly.ManifestModule.
FullyQualifiedName
) : null;
Microsoft.CodeAnalysis.Scripting.TestUtilities (2)
TestRuntimeMetadataReferenceResolver.cs (2)
30
string testDir = Path.GetDirectoryName(GetType().GetTypeInfo().Assembly.ManifestModule.
FullyQualifiedName
);
37
string fxDir = Path.GetDirectoryName(typeof(object).GetTypeInfo().Assembly.ManifestModule.
FullyQualifiedName
);
Microsoft.ML.Maml (1)
MAML.cs (1)
57
string currentDirectory = Path.GetDirectoryName(typeof(Maml).Module.
FullyQualifiedName
);
Microsoft.ML.ResultProcessor (1)
ResultProcessor.cs (1)
1005
string currentDirectory = Path.GetDirectoryName(typeof(ResultProcessor).Module.
FullyQualifiedName
);
Microsoft.ML.Sweeper (2)
ConfigRunner.cs (1)
107
string currentDirectory = Path.GetDirectoryName(typeof(ExeConfigRunnerBase).Module.
FullyQualifiedName
);
SweepCommand.cs (1)
49
public static readonly string LocalExePath = Path.GetDirectoryName(typeof(SweepCommand).Module.
FullyQualifiedName
);
MSBuild (1)
FrameworkLocationHelper.cs (1)
1425
Path.GetDirectoryName(typeof(object).Module.
FullyQualifiedName
),
System.ComponentModel.TypeConverter (1)
System\ComponentModel\LicFileLicenseProvider.cs (1)
79
modulePath ??= type.Module.
FullyQualifiedName
;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
33
get { return UnderlyingModule.
FullyQualifiedName
; }
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Assemblies\RoAssembly.Modules.cs (2)
28
return new FileStream(m.
FullyQualifiedName
, FileMode.Open, FileAccess.Read, FileShare.Read);
40
fs[i] = new FileStream(m[i].
FullyQualifiedName
, FileMode.Open, FileAccess.Read, FileShare.Read);
System.Windows.Forms (2)
System\Windows\Forms\Application.cs (1)
1132
? FileVersionInfo.GetVersionInfo(type.Module.
FullyQualifiedName
)
System\Windows\Forms\Control.ControlVersionInfo.cs (1)
163
string path = _owner.GetType().Module.
FullyQualifiedName
;