1 write to Location
Microsoft.CodeAnalysis.Scripting (1)
Hosting\AssemblyLoader\AssemblyAndLocation.cs (1)
25Location = location;
6 references to Location
Microsoft.CodeAnalysis.Scripting (6)
Hosting\AssemblyLoader\AssemblyAndLocation.cs (4)
32=> Assembly == other.Assembly && Location == other.Location && GlobalAssemblyCache == other.GlobalAssemblyCache; 35=> Hash.Combine(Assembly, Hash.Combine(Location, Hash.Combine(GlobalAssemblyCache, 0))); 41=> Assembly + " @ " + (GlobalAssemblyCache ? "<GAC>" : Location);
Hosting\AssemblyLoader\InteractiveAssemblyLoader.cs (2)
465new LoadedAssembly { OriginalPath = assemblyAndLocation.GlobalAssemblyCache ? assemblyAndLocation.Location : originalPath }); 467RegisterLoadedAssemblySimpleNameNoLock(assemblyAndLocation.Assembly, assemblyAndLocation.Location);