aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Targets/SharpDevelop2Target.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Prebuild/src/Core/Targets/SharpDevelop2Target.cs')
-rw-r--r--Prebuild/src/Core/Targets/SharpDevelop2Target.cs33
1 files changed, 22 insertions, 11 deletions
diff --git a/Prebuild/src/Core/Targets/SharpDevelop2Target.cs b/Prebuild/src/Core/Targets/SharpDevelop2Target.cs
index 0d78796..66dd1bc 100644
--- a/Prebuild/src/Core/Targets/SharpDevelop2Target.cs
+++ b/Prebuild/src/Core/Targets/SharpDevelop2Target.cs
@@ -23,15 +23,6 @@ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY O
23*/ 23*/
24#endregion 24#endregion
25 25
26#region CVS Information
27/*
28 * $Source$
29 * $Author: jendave $
30 * $Date: 2006-01-27 16:49:58 -0800 (Fri, 27 Jan 2006) $
31 * $Revision: 71 $
32 */
33#endregion
34
35using System; 26using System;
36 27
37using Prebuild.Core.Attributes; 28using Prebuild.Core.Attributes;
@@ -43,18 +34,38 @@ namespace Prebuild.Core.Targets
43 /// </summary> 34 /// </summary>
44 [Target("sharpdev2")] 35 [Target("sharpdev2")]
45 public class SharpDevelop2Target : VS2005Target 36 public class SharpDevelop2Target : VS2005Target
46 { 37 {
47 protected override string VersionName 38 #region Properties
39 public override string VersionName
48 { 40 {
49 get 41 get
50 { 42 {
51 return "SharpDevelop2"; 43 return "SharpDevelop2";
52 } 44 }
53 } 45 }
46 #endregion
54 47
55 #region Public Methods 48 #region Public Methods
56 49
57 /// <summary> 50 /// <summary>
51 /// Writes the specified kern.
52 /// </summary>
53 /// <param name="kern">The kern.</param>
54 public override void Write(Kernel kern)
55 {
56 base.Write(kern);
57 }
58
59 /// <summary>
60 /// Cleans the specified kern.
61 /// </summary>
62 /// <param name="kern">The kern.</param>
63 public override void Clean(Kernel kern)
64 {
65 base.Clean(kern);
66 }
67
68 /// <summary>
58 /// Gets the name. 69 /// Gets the name.
59 /// </summary> 70 /// </summary>
60 /// <value>The name.</value> 71 /// <value>The name.</value>