a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
391 B
C#
17 lines
391 B
C#
using System;
|
|
using Microsoft.Build.Construction;
|
|
|
|
namespace Microsoft.Build.Execution
|
|
{
|
|
public abstract class ProjectTaskInstanceChild
|
|
{
|
|
public abstract string Condition { get; }
|
|
#if NET_4_5
|
|
public abstract ElementLocation ConditionLocation { get; }
|
|
public abstract ElementLocation Location { get; }
|
|
public abstract ElementLocation TaskParameterLocation { get; }
|
|
#endif
|
|
}
|
|
}
|
|
|