5 implementations of BuildProjectFile
Microsoft.Build (2)
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
606public bool BuildProjectFile(string projectFileName, string[] targetNames, System.Collections.IDictionary globalProperties, System.Collections.IDictionary targetOutputs)
Instance\TaskFactoryEngineContext.cs (1)
287public bool BuildProjectFile(string projectFileName, string[] targetNames, System.Collections.IDictionary globalProperties, System.Collections.IDictionary targetOutputs)
Microsoft.Build.Tasks.Core (1)
AssemblyDependency\Node\RarNodeBuildEngine.cs (1)
190public bool BuildProjectFile(
MSBuild (1)
OutOfProcTaskHostNode.cs (1)
463public bool BuildProjectFile(string projectFileName, string[] targetNames, IDictionary globalProperties, IDictionary targetOutputs)
NuGet.Build.Tasks.Console (1)
ConsoleLoggingQueue.cs (1)
110bool IBuildEngine.BuildProjectFile(string projectFileName, string[] targetNames, IDictionary globalProperties, IDictionary targetOutputs) => throw new NotImplementedException();
3 references to BuildProjectFile
NuGet.Build.Tasks.Console (1)
ConsoleLoggingQueue.cs (1)
109/// <inheritdoc cref="IBuildEngine.BuildProjectFile" />
PresentationBuildTasks (2)
Microsoft\Build\Tasks\Windows\GenerateTemporaryTargetAssembly.cs (2)
178retValue = BuildEngine.BuildProjectFile(tempProj, new string[] { CompileTargetName }, globalProperties, targetOutputs); 293retValue = BuildEngine.BuildProjectFile(TemporaryTargetAssemblyProjectName, new string[] { CompileTargetName }, null, targetOutputs);