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

namespace Microsoft.Build.Framework
{
	[SerializableAttribute]
	public struct BuildEngineResult
	{
		public BuildEngineResult (bool result, List<IDictionary<string, ITaskItem[]>> targetOutputsPerProject)
		{
			this.result = result;
			this.outputs = targetOutputsPerProject;
		}

		readonly bool result;
		public bool Result {
			get { return result; }
		}

		readonly IList<IDictionary<string, ITaskItem[]>> outputs;
		public IList<IDictionary<string, ITaskItem[]>> TargetOutputsPerProject {
			get { return outputs; }
		}
	}
}