1 write to PluginAssemblyPath
Microsoft.Build (1)
BackEnd\Components\ProjectCache\ProjectCacheDescriptor.cs (1)
15PluginAssemblyPath = pluginAssemblyPath;
7 references to PluginAssemblyPath
Microsoft.Build (7)
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 (3)
217ErrorUtilities.VerifyThrowArgumentNull(projectCacheDescriptor.PluginAssemblyPath, nameof(projectCacheDescriptor.PluginAssemblyPath)); 219string pluginAssemblyPath = projectCacheDescriptor.PluginAssemblyPath!;