10 references to TaskFactoryParameters
Microsoft.Build (6)
Instance\TaskRegistry.cs (6)
1493
TaskFactoryParameters
.Add(Constants.TaskHostExplicitlyRequested, isTaskHostFactory.ToString());
1510
loadedType = taskFactory.InitializeFactory(taskFactoryLoadInfo, RegisteredName, ParameterGroupAndTaskBody.UsingTaskParameters, ParameterGroupAndTaskBody.InlineTaskXmlBody,
TaskFactoryParameters
, launchTaskHost, targetLoggingContext, elementLocation, taskProjectFile);
1588
initialized = factory2.Initialize(RegisteredName,
TaskFactoryParameters
, ParameterGroupAndTaskBody.UsingTaskParameters, ParameterGroupAndTaskBody.InlineTaskXmlBody, taskFactoryLoggingHost);
1596
bool containsArchOrRuntimeParam =
TaskFactoryParameters
?.TryGetValue(XMakeAttributes.runtime, out _) == true
1597
||
TaskFactoryParameters
?.TryGetValue(XMakeAttributes.architecture, out _) == true;
1670
_taskFactoryWrapperInstance = new TaskFactoryWrapper(factory, loadedType, RegisteredName,
TaskFactoryParameters
, Statistics);
Microsoft.Build.Engine.UnitTests (4)
BackEnd\TaskRegistry_Tests.cs (2)
2019
Assert.Equal(expectedRuntime, record.
TaskFactoryParameters
[XMakeAttributes.runtime]);
2024
Assert.Equal(expectedArchitecture, record.
TaskFactoryParameters
[XMakeAttributes.architecture]);
TestComparers\TaskRegistryComparers.cs (2)
54
x.
TaskFactoryParameters
,
55
y.
TaskFactoryParameters
,