10 references to MSBuildAssemblyPath
Microsoft.Build (5)
BackEnd\Components\Communications\NodeProviderOutOfProcTaskHost.cs (3)
463
if (taskHostParameters.
MSBuildAssemblyPath
!= null)
465
ValidateNetHostSdkVersion(taskHostParameters.
MSBuildAssemblyPath
);
467
return taskHostParameters.
MSBuildAssemblyPath
;
Instance\TaskRegistry.cs (2)
957
string.Equals(x.
MSBuildAssemblyPath
, y.
MSBuildAssemblyPath
, StringComparison.OrdinalIgnoreCase) &&
Microsoft.Build.Engine.UnitTests (2)
TestComparers\TaskRegistryComparers.cs (2)
59
Assert.Equal(xParams.
MSBuildAssemblyPath
, yParams.
MSBuildAssemblyPath
);
Microsoft.Build.Framework (3)
BinaryTranslator.cs (1)
1132
string msBuildAssemblyPath = value.
MSBuildAssemblyPath
;
TaskHostParameters.cs (2)
111
msBuildAssemblyPath: overrideParameters.
MSBuildAssemblyPath
?? baseParameters.
MSBuildAssemblyPath
,