12 references to TaskFactoryParameters
Microsoft.Build (8)
Instance\TaskRegistry.cs (8)
1440loadedType = taskFactory.InitializeFactory(taskFactoryLoadInfo, RegisteredName, ParameterGroupAndTaskBody.UsingTaskParameters, ParameterGroupAndTaskBody.InlineTaskXmlBody, TaskFactoryParameters, launchTaskHost, targetLoggingContext, elementLocation, taskProjectFile); 1520{ nameof(TaskHostParameters.Runtime), TaskFactoryParameters.Runtime }, 1521{ nameof(TaskHostParameters.Architecture), TaskFactoryParameters.Architecture }, 1522{ nameof(TaskHostParameters.TaskHostFactoryExplicitlyRequested), TaskFactoryParameters.TaskHostFactoryExplicitlyRequested.ToString() }, 1529initialized = factory3.Initialize(RegisteredName, TaskFactoryParameters, ParameterGroupAndTaskBody.UsingTaskParameters, ParameterGroupAndTaskBody.InlineTaskXmlBody, taskFactoryLoggingHost); 1537bool containsArchOrRuntimeParam = TaskFactoryParameters.Runtime != null 1538|| TaskFactoryParameters.Architecture != null; 1611_taskFactoryWrapperInstance = new TaskFactoryWrapper(factory, loadedType, RegisteredName, TaskFactoryParameters, Statistics);
Microsoft.Build.Engine.UnitTests (4)
BackEnd\TaskRegistry_Tests.cs (2)
1910Assert.Equal(expectedRuntime, record.TaskFactoryParameters.Runtime); 1915Assert.Equal(expectedArchitecture, record.TaskFactoryParameters.Architecture);
TestComparers\TaskRegistryComparers.cs (2)
54var xParams = x.TaskFactoryParameters; 55var yParams = y.TaskFactoryParameters;