10 references to TaskClassRegistry
Microsoft.Build (4)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (3)
145/// When the task was resolved from <see cref="TaskClassRegistry"/> (a host-registered task), the 387/// Attempts to resolve the current task from the host task registry (<see cref="TaskClassRegistry"/>). 395if (TaskClassRegistry.TryGetRegistration(_taskName, out TaskClassRegistration registration))
Instance\TaskFactories\RegisteredTaskFactory.cs (1)
14/// <see cref="TaskClassRegistry"/> (via <c>Microsoft.Build.Utilities.Task.RegisterTask</c>), with no
Microsoft.Build.Framework (4)
TaskClassRegistration.cs (4)
11/// A single entry in the <see cref="TaskClassRegistry"/>: how to construct a registered task and the 15/// The <see cref="LoadedType"/> is built once. For the generic <see cref="TaskClassRegistry.Register{T}(string)"/> 17/// <see cref="TaskClassRegistry.Register(string, Func{ITask})"/> overload - where only an untyped factory is 73=> TaskClassRegistry.CreateLoadedType(_createInstance().GetType());
Microsoft.Build.Utilities.Core (2)
Task.cs (2)
189=> TaskClassRegistry.Register<T>(taskName); 217=> TaskClassRegistry.Register(taskName, factory);