1 instantiation of MSBuild
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\IntrinsicTasks\IntrinsicTaskFactory.cs (1)
88return new MSBuild();
9 references to MSBuild
Microsoft.Build (9)
BackEnd\Components\RequestBuilder\IntrinsicTasks\CallTarget.cs (3)
37/// default targets, use the <see cref="MSBuild"/> task and pass in Projects=$(MSBuildProjectFile). 99List<string[]> targetLists = MSBuild.CreateTargetLists(Targets, RunEachTargetSeparately); 105return MSBuild.ExecuteTargets(
BackEnd\Components\RequestBuilder\IntrinsicTasks\IntrinsicTaskFactory.cs (1)
86if (TaskType == typeof(MSBuild))
BackEnd\Components\RequestBuilder\TaskBuilder.cs (2)
780if (taskExecutionHost.TaskInstance is MSBuild msbuildTask) 1055private List<string> GetUndeclaredProjects(MSBuild msbuildTask)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (2)
419taskFactoryWrapper = CreateIntrinsicTaskFactoryWrapper(typeof(MSBuild)); 1251returnClass = CreateIntrinsicTaskFactoryWrapper(typeof(MSBuild));
Graph\ProjectInterpretation.cs (1)
411/// Gets the effective global properties for an item that will get passed to <see cref="MSBuild.Projects"/>.