summaryrefslogtreecommitdiff
path: root/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/IBuildEngine3.cs
blob: b4ce06a39efc6d0e5a99647646a6df88afcb28c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections;
using System.Collections.Generic;

namespace Microsoft.Build.Framework
{
	[MonoTODO]
	public interface IBuildEngine3 : IBuildEngine2
	{
		BuildEngineResult BuildProjectFilesInParallel (
			string[] projectFileNames,
			string[] targetNames,
			IDictionary[] globalProperties,
			IList<string>[] removeGlobalProperties,
			string[] toolsVersion,
			bool returnTargetOutputs
		);
		void Reacquire ();
		void Yield ();
	}
}