1 write to PluginAssemblyPath
Microsoft.Build (1)
BackEnd\Components\ProjectCache\ProjectCacheDescriptor.cs (1)
16PluginAssemblyPath = pluginAssemblyPath;
6 references to PluginAssemblyPath
Microsoft.Build (6)
BackEnd\Components\ProjectCache\ProjectCacheDescriptorEqualityComparer.cs (4)
30return string.Equals(x.PluginAssemblyPath, y.PluginAssemblyPath, StringComparison.OrdinalIgnoreCase) 39if (obj.PluginAssemblyPath != null) 41hashCode = (hashCode * -1521134295) + StringComparer.OrdinalIgnoreCase.GetHashCode(obj.PluginAssemblyPath);
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
224ArgumentNullException.ThrowIfNull(projectCacheDescriptor.PluginAssemblyPath); 226string pluginAssemblyPath = projectCacheDescriptor.PluginAssemblyPath!;