11 references to ProjectCachePluginBase
Microsoft.Build (11)
BackEnd\Components\ProjectCache\ProjectCacheDescriptor.cs (1)
33
public static ProjectCacheDescriptor FromInstance(
ProjectCachePluginBase
pluginInstance, IReadOnlyDictionary<string, string>? pluginSettings = null)
BackEnd\Components\ProjectCache\ProjectCacheService.cs (10)
266
if (pluginInstance is
ProjectCachePluginBase
currentPlugin)
404
if (typeof(
ProjectCachePluginBase
).IsAssignableFrom(pluginType))
406
return (
ProjectCachePluginBase
)Activator.CreateInstance(pluginType)!;
431
Type? type = GetTypes<
ProjectCachePluginBase
>(assembly).FirstOrDefault();
619
if (plugin.PluginInstance is
ProjectCachePluginBase
currentPlugin)
647
HandlePluginException(e, nameof(
ProjectCachePluginBase
.GetCacheResultAsync));
904
else if (plugin.PluginInstance is
ProjectCachePluginBase
currentPlugin)
912
HandlePluginException(e, nameof(
ProjectCachePluginBase
.HandleProjectFinishedAsync));
987
else if (plugin.PluginInstance is
ProjectCachePluginBase
currentPlugin)
997
HandlePluginException(e, nameof(
ProjectCachePluginBase
.EndBuildAsync));