9 references to GetCurrentMSBuildRuntime
Microsoft.Build (5)
Instance\TaskFactories\AssemblyTaskFactory.cs (1)
353
mergedParameters[XMakeAttributes.runtime] = XMakeAttributes.
GetCurrentMSBuildRuntime
();
XMakeAttributes.cs (4)
190
if ((runtimeA.Equals(MSBuildRuntimeValues.currentRuntime, StringComparison.OrdinalIgnoreCase) && runtimeB.Equals(
GetCurrentMSBuildRuntime
(), StringComparison.OrdinalIgnoreCase)) ||
191
(runtimeA.Equals(
GetCurrentMSBuildRuntime
(), StringComparison.OrdinalIgnoreCase) && runtimeB.Equals(MSBuildRuntimeValues.currentRuntime, StringComparison.OrdinalIgnoreCase)))
227
string actualCurrentRuntime =
GetCurrentMSBuildRuntime
();
332
return
GetCurrentMSBuildRuntime
();
Microsoft.Build.Engine.UnitTests (4)
BackEnd\AssemblyTaskFactory_Tests.cs (3)
182
taskIdentityParameters.Add(XMakeAttributes.runtime, XMakeAttributes.
GetCurrentMSBuildRuntime
());
307
taskParameters.Add(XMakeAttributes.runtime, XMakeAttributes.
GetCurrentMSBuildRuntime
());
404
factoryParameters.Add(XMakeAttributes.runtime, XMakeAttributes.
GetCurrentMSBuildRuntime
());
XmakeAttributes_Tests.cs (1)
94
mergedRuntime.ShouldBe(XMakeAttributes.
GetCurrentMSBuildRuntime
());