10923776c8393c2c718f9ce9f10be20265d5972e
[mono.git] / mcs / class / Microsoft.Build.Framework / Microsoft.Build.Framework / ICancelableTask.cs
1 #if NET_4_0
2 using System;
3
4 namespace Microsoft.Build.Framework
5 {
6         [MonoTODO ("This needs to be taken into consideration in the build engine")]
7         public interface ICancelableTask : ITask
8         {
9                 void Cancel ();
10         }
11 }
12
13 #endif