8 references to Name
Microsoft.Build.CommandLine.UnitTests (3)
ValidateAssemblyLoadContext.cs (3)
28
if (!thisLoadContext.
Name
.EndsWith(typeof(ValidateAssemblyLoadContext).Assembly.GetName().Name + ".dll"))
30
Log.LogError($"Unexpected AssemblyLoadContext name: \"{thisLoadContext.
Name
}\", but the current executing assembly was {typeof(ValidateAssemblyLoadContext).Assembly.GetName().Name}");
34
Log.LogMessage(MessageImportance.High, $"Task {nameof(ValidateAssemblyLoadContext)} loaded in AssemblyLoadContext named {thisLoadContext.
Name
}");
Microsoft.CodeAnalysis.LanguageServer (2)
Services\ExtensionAssemblyManager.cs (2)
110
assemblyFilePath, assemblyFullName, existingContext.
Name
);
127
logger.LogTrace("Reusing {contextName} load context for {assemblyFilePath}", directoryContext.
Name
, assemblyFilePath);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Runtime\Loader\AssemblyLoadContext.cs (2)
270
public override string ToString() => $"\"{
Name
}\" {GetType()} #{_id}";
628
this != Default ? ToString() :
Name
,
System.Reflection.DispatchProxy (1)
System\Reflection\DispatchProxyGenerator.cs (1)
128
string? alcName = alc.
Name
;