MS.Build.dll: Add more missing members and implementation for some members.
[mono.git] / mcs / class / Microsoft.Build / Microsoft.Build.Execution / ProjectItemGroupTaskInstance.cs
1 using System;
2 using System.Collections.Generic;
3 using Microsoft.Build.Construction;
4
5 namespace Microsoft.Build.Execution
6 {
7         public sealed class ProjectItemGroupTaskInstance : ProjectTargetInstanceChild
8         {
9                 public override string Condition {
10                         get { throw new NotImplementedException (); }
11                 }
12                 public ICollection<ProjectItemGroupTaskItemInstance> Items { get; private set; }
13
14                 #if NET_4_5
15                 public override ElementLocation ConditionLocation {
16                         get { throw new NotImplementedException (); }
17                 }
18                 public ElementLocation ExecuteTargetsLocation {
19                         get { throw new NotImplementedException (); }
20                 }
21                 public override ElementLocation Location {
22                         get { throw new NotImplementedException (); }
23                 }
24                 #endif
25                 public string ContinueOnError { get; private set; }
26         }
27 }
28