Files
linux-packaging-mono/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/ICancelableTask.cs

12 lines
200 B
C#
Raw Normal View History

using System;
namespace Microsoft.Build.Framework
{
[MonoTODO ("This needs to be taken into consideration in the build engine")]
public interface ICancelableTask : ITask
{
void Cancel ();
}
}