49 references to Runtime
Microsoft.Build (36)
BackEnd\Components\RequestBuilder\RequestBuilder.cs (1)
1394registeredTaskRecord.TaskFactoryParameters.Runtime);
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (2)
1238returnClass.FactoryIdentityParameters.Runtime ?? XMakeAttributes.MSBuildRuntimeValues.any, 1240taskIdentityParameters.Runtime ?? XMakeAttributes.MSBuildRuntimeValues.any,
Instance\TaskFactories\AssemblyTaskFactory.cs (19)
429string runtime = taskHostParameters.Runtime 513if (identityParameters.Runtime != null) 515if (!XMakeAttributes.IsValidMSBuildRuntimeValue(identityParameters.Runtime)) 521identityParameters.Runtime, 560if (XMakeAttributes.RuntimeValuesMatch(taskIdentityParameters.Runtime, factoryIdentityParameters.Runtime)) 588string normalizedRuntime = XMakeAttributes.GetExplicitMSBuildRuntime(factoryIdentityParameters.Runtime); 591return normalizedRuntime == factoryIdentityParameters.Runtime && normalizedArch == factoryIdentityParameters.Architecture 598string normalizedRuntime = XMakeAttributes.GetExplicitMSBuildRuntime(taskIdentityParameters.Runtime); 601return normalizedRuntime == taskIdentityParameters.Runtime && normalizedArch == taskIdentityParameters.Architecture 606if (!XMakeAttributes.TryMergeRuntimeValues(taskIdentityParameters.Runtime, factoryIdentityParameters.Runtime, out var mergedRuntime)) 608InternalError.Throw($"How did we get two runtime values that were unmergeable? TaskIdentity Runtime: {taskIdentityParameters.Runtime}, FactoryIdentity Runtime: {factoryIdentityParameters.Runtime}."); 630if (currentParams.Runtime == null || 631!currentParams.Runtime.Equals(XMakeAttributes.MSBuildRuntimeValues.net, StringComparison.OrdinalIgnoreCase)) 657runtime: currentParams.Runtime, 675if (mergedParameters.Runtime != null) 679if (!currentRuntime.Equals(XMakeAttributes.GetExplicitMSBuildRuntime(mergedParameters.Runtime), StringComparison.OrdinalIgnoreCase))
Instance\TaskFactories\TaskHostTask.cs (4)
311_taskHostParameters.Runtime, 425LogErrorUnableToCreateTaskHost(_requiredContext, _taskHostParameters.Runtime, _taskHostParameters.Architecture, null); 430LogErrorUnableToCreateTaskHost(_requiredContext, _taskHostParameters.Runtime, _taskHostParameters.Architecture, ex); 434LogErrorUnableToCreateTaskHost(_requiredContext, _taskHostParameters.Runtime, _taskHostParameters.Architecture, e);
Instance\TaskRegistry.cs (10)
907int runtimeHash = obj.TaskIdentityParameters.Runtime == null ? 0 : StringComparer.OrdinalIgnoreCase.GetHashCode(obj.TaskIdentityParameters.Runtime); 949return string.Equals(x.Runtime, y.Runtime, StringComparison.OrdinalIgnoreCase) && 957string runtimeX = x.Runtime; 958string runtimeY = y.Runtime; 1159Assumed.True(taskFactoryParameters.Runtime != null && taskFactoryParameters.Architecture != null, "if the parameters are non-null, it should contain both Runtime and Architecture when we get here!"); 1510{ nameof(TaskHostParameters.Runtime), TaskFactoryParameters.Runtime }, 1527bool containsArchOrRuntimeParam = TaskFactoryParameters.Runtime != null
Microsoft.Build.Framework (13)
BackEnd\CommunicationsUtilities.cs (5)
589Assumed.NotNull(taskHostParameters.Runtime, "Should always have an explicit runtime when we call this method."); 592if (taskHostParameters.Runtime.Equals(XMakeAttributes.MSBuildRuntimeValues.clr2, StringComparison.OrdinalIgnoreCase)) 596else if (taskHostParameters.Runtime.Equals(XMakeAttributes.MSBuildRuntimeValues.clr4, StringComparison.OrdinalIgnoreCase)) 600else if (taskHostParameters.Runtime.Equals(XMakeAttributes.MSBuildRuntimeValues.net, StringComparison.OrdinalIgnoreCase)) 623XMakeAttributes.MSBuildRuntimeValues.net.Equals(taskHostParameters.Runtime, StringComparison.OrdinalIgnoreCase);
BinaryTranslator.cs (1)
1075string runtime = value.Runtime;
TaskHostParameters.cs (7)
79StringComparer.OrdinalIgnoreCase.Equals(Runtime ?? string.Empty, other.Runtime ?? string.Empty) 91hash = hash * 31 + comparer.GetHashCode(Runtime ?? string.Empty); 132runtime: overrideParameters.Runtime ?? baseParameters.Runtime, 163{ nameof(Runtime), Runtime ?? string.Empty },