13 references to RegisteredName
Microsoft.Build (11)
Instance\TaskRegistry.cs (11)
469
string mostSpecificTaskName = (taskName.Length > record.
RegisteredName
.Length) ? taskName : record.
RegisteredName
;
724
if (rec.
RegisteredName
.Equals(taskIdentity.Name, StringComparison.OrdinalIgnoreCase))
1435
!TypeLoader.IsPartialTypeNameMatch(
RegisteredName
, "MSBuild") &&
1436
!TypeLoader.IsPartialTypeNameMatch(
RegisteredName
, "CallTarget"));
1440
loadedType = taskFactory.InitializeFactory(taskFactoryLoadInfo,
RegisteredName
, ParameterGroupAndTaskBody.UsingTaskParameters, ParameterGroupAndTaskBody.InlineTaskXmlBody, TaskFactoryParameters, launchTaskHost, targetLoggingContext, elementLocation, taskProjectFile);
1525
initialized = factory2.Initialize(
RegisteredName
, taskFactoryParams, ParameterGroupAndTaskBody.UsingTaskParameters, ParameterGroupAndTaskBody.InlineTaskXmlBody, taskFactoryLoggingHost);
1529
initialized = factory3.Initialize(
RegisteredName
, TaskFactoryParameters, ParameterGroupAndTaskBody.UsingTaskParameters, ParameterGroupAndTaskBody.InlineTaskXmlBody, taskFactoryLoggingHost);
1533
initialized = factory.Initialize(
RegisteredName
, ParameterGroupAndTaskBody.UsingTaskParameters, ParameterGroupAndTaskBody.InlineTaskXmlBody, taskFactoryLoggingHost);
1549
RegisteredName
);
1611
_taskFactoryWrapperInstance = new TaskFactoryWrapper(factory, loadedType,
RegisteredName
, TaskFactoryParameters, Statistics);
Microsoft.Build.Engine.UnitTests (2)
TestComparers\TaskRegistryComparers.cs (2)
48
Assert.Equal(x.
RegisteredName
, y.
RegisteredName
);