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, 11 insertions, 22 deletions
diff --git a/Prebuild/src/Core/Targets/SharpDevelop2Target.cs b/Prebuild/src/Core/Targets/SharpDevelop2Target.cs
index 66dd1bc..0d78796 100644
--- a/Prebuild/src/Core/Targets/SharpDevelop2Target.cs
+++ b/Prebuild/src/Core/Targets/SharpDevelop2Target.cs
@@ -23,6 +23,15 @@ 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
26using System; 35using System;
27 36
28using Prebuild.Core.Attributes; 37using Prebuild.Core.Attributes;
@@ -34,38 +43,18 @@ namespace Prebuild.Core.Targets
34 /// </summary> 43 /// </summary>
35 [Target("sharpdev2")] 44 [Target("sharpdev2")]
36 public class SharpDevelop2Target : VS2005Target 45 public class SharpDevelop2Target : VS2005Target
37 { 46 {
38 #region Properties 47 protected override string VersionName
39 public override string VersionName
40 { 48 {
41 get 49 get
42 { 50 {
43 return "SharpDevelop2"; 51 return "SharpDevelop2";
44 } 52 }
45 } 53 }
46 #endregion
47 54
48 #region Public Methods 55 #region Public Methods
49 56
50 /// <summary> 57 /// <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>
69 /// Gets the name. 58 /// Gets the name.
70 /// </summary> 59 /// </summary>
71 /// <value>The name.</value> 60 /// <value>The name.</value>