aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Targets/VS2005Target.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Prebuild/src/Core/Targets/VS2005Target.cs')
-rw-r--r--Prebuild/src/Core/Targets/VS2005Target.cs149
1 files changed, 0 insertions, 149 deletions
diff --git a/Prebuild/src/Core/Targets/VS2005Target.cs b/Prebuild/src/Core/Targets/VS2005Target.cs
deleted file mode 100644
index 63461c9..0000000
--- a/Prebuild/src/Core/Targets/VS2005Target.cs
+++ /dev/null
@@ -1,149 +0,0 @@
1#region BSD License
2/*
3Copyright (c) 2004 Matthew Holmes (matthew@wildfiregames.com)
4
5Redistribution and use in source and binary forms, with or without modification, are permitted
6provided that the following conditions are met:
7
8* Redistributions of source code must retain the above copyright notice, this list of conditions
9 and the following disclaimer.
10* Redistributions in binary form must reproduce the above copyright notice, this list of conditions
11 and the following disclaimer in the documentation and/or other materials provided with the
12 distribution.
13* The name of the author may not be used to endorse or promote products derived from this software
14 without specific prior written permission.
15
16THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
17BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
22IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23*/
24#endregion
25
26using System;
27using System.Collections;
28using System.Collections.Specialized;
29using System.IO;
30using System.Text;
31
32using Prebuild.Core.Attributes;
33using Prebuild.Core.Interfaces;
34using Prebuild.Core.Nodes;
35using Prebuild.Core.Utilities;
36
37namespace Prebuild.Core.Targets
38{
39 /// <summary>
40 ///
41 /// </summary>
42 [Target("vs2005")]
43 public class VS2005Target : VSGenericTarget
44 {
45 #region Inner Classes
46
47 #endregion
48
49 #region Fields
50
51 string solutionVersion = "9.00";
52 string productVersion = "8.0.50727";
53 string schemaVersion = "2.0";
54 string versionName = "Visual C# 2005";
55 string name = "vs2005";
56
57 VSVersion version = VSVersion.VS80;
58
59 public override string SolutionTag
60 {
61 get { return "# Visual Studio 2005"; }
62 }
63
64 protected override string GetToolsVersionXml(FrameworkVersion frameworkVersion)
65 {
66 return string.Empty;
67 }
68 /// <summary>
69 /// Gets or sets the solution version.
70 /// </summary>
71 /// <value>The solution version.</value>
72 public override string SolutionVersion
73 {
74 get
75 {
76 return solutionVersion;
77 }
78 }
79 /// <summary>
80 /// Gets or sets the product version.
81 /// </summary>
82 /// <value>The product version.</value>
83 public override string ProductVersion
84 {
85 get
86 {
87 return productVersion;
88 }
89 }
90 /// <summary>
91 /// Gets or sets the schema version.
92 /// </summary>
93 /// <value>The schema version.</value>
94 public override string SchemaVersion
95 {
96 get
97 {
98 return schemaVersion;
99 }
100 }
101 /// <summary>
102 /// Gets or sets the name of the version.
103 /// </summary>
104 /// <value>The name of the version.</value>
105 public override string VersionName
106 {
107 get
108 {
109 return versionName;
110 }
111 }
112 /// <summary>
113 /// Gets or sets the version.
114 /// </summary>
115 /// <value>The version.</value>
116 public override VSVersion Version
117 {
118 get
119 {
120 return version;
121 }
122 }
123 /// <summary>
124 /// Gets the name.
125 /// </summary>
126 /// <value>The name.</value>
127 public override string Name
128 {
129 get
130 {
131 return name;
132 }
133 }
134
135 #endregion
136
137 #region Constructors
138
139 /// <summary>
140 /// Initializes a new instance of the <see cref="VS2005Target"/> class.
141 /// </summary>
142 public VS2005Target()
143 : base()
144 {
145 }
146
147 #endregion
148 }
149}