Add missing ProjectInstance family.
[mono.git] / mcs / class / Microsoft.Build / Microsoft.Build.Execution / BuildRequestData.cs
1 //
2 // BuildRequestData.cs
3 //
4 // Author:
5 //   Rolf Bjarne Kvinge (rolf@xamarin.com)
6 //
7 // Copyright (C) 2011 Xamarin Inc.
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Linq;
31 using System.Collections.Generic;
32
33 namespace Microsoft.Build.Execution
34 {
35         public class BuildRequestData
36         {
37                 public BuildRequestData (ProjectInstance projectInstance, string[] targetsToBuild)
38                 : this (projectInstance, targetsToBuild, null, BuildRequestDataFlags.None)
39                 {
40                 }
41
42                 public BuildRequestData (ProjectInstance projectInstance, string[] targetsToBuild, HostServices hostServices)
43                 : this (projectInstance, targetsToBuild, hostServices, BuildRequestDataFlags.None)
44                 {
45                 }
46
47                 public BuildRequestData (ProjectInstance projectInstance, string[] targetsToBuild, HostServices hostServices,
48                                 BuildRequestDataFlags flags)
49                 {
50                         ProjectInstance = projectInstance;
51                         TargetNames = targetsToBuild;
52                         HostServices = hostServices;
53                         Flags = flags;
54                 }
55
56                 public BuildRequestData (string projectFullPath, IDictionary<string, string> globalProperties,
57                                 string toolsVersion, string[] targetsToBuild, HostServices hostServices)
58                         : this (projectFullPath, globalProperties, toolsVersion, targetsToBuild, hostServices, BuildRequestDataFlags.None)
59                 {
60                 }
61
62                 public BuildRequestData (string projectFullPath, IDictionary<string, string> globalProperties,
63                                 string toolsVersion, string[] targetsToBuild, HostServices hostServices, BuildRequestDataFlags flags)
64                         : this (new ProjectInstance (projectFullPath, globalProperties, toolsVersion), targetsToBuild, hostServices, BuildRequestDataFlags.None)
65                 {
66                 }
67
68                 public string ExplicitlySpecifiedToolsVersion { get; private set; }
69
70                 public BuildRequestDataFlags Flags { get; private set; }
71
72                 public HostServices HostServices { get; private set; }
73
74                 public string ProjectFullPath { get; private set; }
75
76                 public ProjectInstance ProjectInstance { get; private set; }
77
78                 public ICollection<string> TargetNames { get; private set; }
79
80                 ICollection<ProjectPropertyInstance> GlobalProperties {
81                         get { return ProjectInstance.GlobalProperties.Select (prop => new ProjectPropertyInstance (prop.Key) { EvaluatedValue = prop.Value }).ToList (); }
82                 }
83         }
84 }
85