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)
271
if (pluginInstance is
ProjectCachePluginBase
currentPlugin)
409
if (typeof(
ProjectCachePluginBase
).IsAssignableFrom(pluginType))
411
return (
ProjectCachePluginBase
)Activator.CreateInstance(pluginType)!;
438
Type? type = GetTypes<
ProjectCachePluginBase
>(assembly).FirstOrDefault();
628
if (plugin.PluginInstance is
ProjectCachePluginBase
currentPlugin)
656
HandlePluginException(e, nameof(
ProjectCachePluginBase
.GetCacheResultAsync));
913
else if (plugin.PluginInstance is
ProjectCachePluginBase
currentPlugin)
921
HandlePluginException(e, nameof(
ProjectCachePluginBase
.HandleProjectFinishedAsync));
996
else if (plugin.PluginInstance is
ProjectCachePluginBase
currentPlugin)
1006
HandlePluginException(e, nameof(
ProjectCachePluginBase
.EndBuildAsync));