|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | +using System.Diagnostics; |
| 4 | +using System.Linq; |
| 5 | +using System.Text; |
| 6 | +using Exortech.NetReflector; |
| 7 | +using ThoughtWorks.CruiseControl.Core.Tasks; |
| 8 | + |
| 9 | +namespace ThoughtWorks.CruiseControl.Core.tasks |
| 10 | +{ |
| 11 | + /// <summary> |
| 12 | + /// <title>FAKE Task</title> |
| 13 | + /// <para>Runs a FAKE - F# Make script.</para> |
| 14 | + /// <version>1.6</version> |
| 15 | + /// <para> |
| 16 | + /// "FAKE - F# Make" is a build automation system. Due to its integration in F#, all benets of the .NET Framework and |
| 17 | + /// functional programming can be used, including the extensive class library, |
| 18 | + /// powerful debuggers and integrated development environments like |
| 19 | + /// Visual Studio 2008 or SharpDevelop, which provide syntax highlighting and code completion. |
| 20 | + /// |
| 21 | + /// The Google group can be found at: http://groups.google.com/group/fsharpMake |
| 22 | + /// More information on: http://bitbucket.org/forki/fake/wiki/Home |
| 23 | + /// </para> |
| 24 | + /// </summary> |
| 25 | + [ReflectorType("fake")] |
| 26 | + public class FakeTask : BaseExecutableTask |
| 27 | + { |
| 28 | + #region Overrides of TaskBase |
| 29 | + |
| 30 | + /// <summary> |
| 31 | + /// Execute the actual task functionality. |
| 32 | + /// </summary> |
| 33 | + /// <param name="result">The result to use.</param> |
| 34 | + /// <returns><c>true</c> if the task was successful; <c>false</c> otherwise.</returns> |
| 35 | + protected override bool Execute(IIntegrationResult result) |
| 36 | + { |
| 37 | + throw new NotImplementedException(); |
| 38 | + } |
| 39 | + |
| 40 | + #endregion |
| 41 | + |
| 42 | + #region Overrides of BaseExecutableTask |
| 43 | + |
| 44 | + protected override string GetProcessFilename() |
| 45 | + { |
| 46 | + throw new NotImplementedException(); |
| 47 | + } |
| 48 | + |
| 49 | + protected override string GetProcessArguments(IIntegrationResult result) |
| 50 | + { |
| 51 | + throw new NotImplementedException(); |
| 52 | + } |
| 53 | + |
| 54 | + protected override string GetProcessBaseDirectory(IIntegrationResult result) |
| 55 | + { |
| 56 | + throw new NotImplementedException(); |
| 57 | + } |
| 58 | + |
| 59 | + protected override ProcessPriorityClass GetProcessPriorityClass() |
| 60 | + { |
| 61 | + throw new NotImplementedException(); |
| 62 | + } |
| 63 | + |
| 64 | + protected override int GetProcessTimeout() |
| 65 | + { |
| 66 | + throw new NotImplementedException(); |
| 67 | + } |
| 68 | + |
| 69 | + #endregion |
| 70 | + } |
| 71 | +} |
0 commit comments