6 implementations of BuildProjects
Microsoft.Build (2)
BackEnd\Components\RequestBuilder\RequestBuilder.cs (1)
332
public async Task<BuildResult[]>
BuildProjects
(string[] projectFiles, PropertyDictionary<ProjectPropertyInstance>[] properties, string[] toolsVersions, string[] targets, bool waitForResults, bool skipNonexistentTargets = false)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
323
async Task<BuildResult[]> IRequestBuilderCallback.
BuildProjects
(string[] projectFiles, Microsoft.Build.Collections.PropertyDictionary<ProjectPropertyInstance>[] properties, string[] toolsVersions, string[] targets, bool waitForResults, bool skipNonexistentTargets)
Microsoft.Build.Engine.UnitTests (4)
BackEnd\TargetBuilder_Tests.cs (1)
1482
Task<BuildResult[]> IRequestBuilderCallback.
BuildProjects
(string[] projectFiles, PropertyDictionary<ProjectPropertyInstance>[] properties, string[] toolsVersions, string[] targets, bool waitForResults, bool skipNonexistentTargets)
BackEnd\TargetEntry_Tests.cs (1)
940
Task<BuildResult[]> IRequestBuilderCallback.
BuildProjects
(string[] projectFiles, PropertyDictionary<ProjectPropertyInstance>[] properties, string[] toolsVersions, string[] targets, bool waitForResults, bool skipNonexistentTargets)
BackEnd\TaskBuilder_Tests.cs (1)
942
Task<BuildResult[]> IRequestBuilderCallback.
BuildProjects
(string[] projectFiles, PropertyDictionary<ProjectPropertyInstance>[] properties, string[] toolsVersions, string[] targets, bool waitForResults, bool skipNonexistentTargets)
BackEnd\TaskHost_Tests.cs (1)
1415
public Task<BuildResult[]>
BuildProjects
(string[] projectFiles, PropertyDictionary<ProjectPropertyInstance>[] properties, string[] toolsVersions, string[] targets, bool waitForResults, bool skipNonexistentTargets)
2 references to BuildProjects
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
325
return await _requestBuilderCallback.
BuildProjects
(projectFiles, properties, toolsVersions, targets, waitForResults, skipNonexistentTargets);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\RequestBuilder_Tests.cs (1)
386
_requestBuilderCallback.
BuildProjects
(projectFiles, properties, toolsVersions, _newRequests[0].Targets, _newRequests[0].ResultsNeeded);