diff options
Diffstat (limited to 'Prebuild/src/Core/Targets/VS2008Target.cs')
-rw-r--r-- | Prebuild/src/Core/Targets/VS2008Target.cs | 180 |
1 files changed, 90 insertions, 90 deletions
diff --git a/Prebuild/src/Core/Targets/VS2008Target.cs b/Prebuild/src/Core/Targets/VS2008Target.cs index a3f3aca..fee4f7f 100644 --- a/Prebuild/src/Core/Targets/VS2008Target.cs +++ b/Prebuild/src/Core/Targets/VS2008Target.cs | |||
@@ -11,86 +11,86 @@ using System.CodeDom.Compiler; | |||
11 | namespace Prebuild.Core.Targets | 11 | namespace Prebuild.Core.Targets |
12 | { | 12 | { |
13 | 13 | ||
14 | /// <summary> | 14 | /// <summary> |
15 | /// | 15 | /// |
16 | /// </summary> | 16 | /// </summary> |
17 | [Target("vs2008")] | 17 | [Target("vs2008")] |
18 | public class VS2008Target : VSGenericTarget | 18 | public class VS2008Target : VSGenericTarget |
19 | { | 19 | { |
20 | #region Fields | 20 | #region Fields |
21 | string solutionVersion = "10.00"; | 21 | string solutionVersion = "10.00"; |
22 | string productVersion = "9.0.21022"; | 22 | string productVersion = "9.0.21022"; |
23 | string schemaVersion = "2.0"; | 23 | string schemaVersion = "2.0"; |
24 | string versionName = "Visual Studio 2008"; | 24 | string versionName = "Visual Studio 2008"; |
25 | string name = "vs2008"; | 25 | string name = "vs2008"; |
26 | VSVersion version = VSVersion.VS90; | 26 | VSVersion version = VSVersion.VS90; |
27 | 27 | ||
28 | /// <summary> | 28 | /// <summary> |
29 | /// Gets or sets the solution version. | 29 | /// Gets or sets the solution version. |
30 | /// </summary> | 30 | /// </summary> |
31 | /// <value>The solution version.</value> | 31 | /// <value>The solution version.</value> |
32 | public override string SolutionVersion | 32 | public override string SolutionVersion |
33 | { | 33 | { |
34 | get | 34 | get |
35 | { | 35 | { |
36 | return solutionVersion; | 36 | return solutionVersion; |
37 | } | 37 | } |
38 | } | 38 | } |
39 | /// <summary> | 39 | /// <summary> |
40 | /// Gets or sets the product version. | 40 | /// Gets or sets the product version. |
41 | /// </summary> | 41 | /// </summary> |
42 | /// <value>The product version.</value> | 42 | /// <value>The product version.</value> |
43 | public override string ProductVersion | 43 | public override string ProductVersion |
44 | { | 44 | { |
45 | get | 45 | get |
46 | { | 46 | { |
47 | return productVersion; | 47 | return productVersion; |
48 | } | 48 | } |
49 | } | 49 | } |
50 | /// <summary> | 50 | /// <summary> |
51 | /// Gets or sets the schema version. | 51 | /// Gets or sets the schema version. |
52 | /// </summary> | 52 | /// </summary> |
53 | /// <value>The schema version.</value> | 53 | /// <value>The schema version.</value> |
54 | public override string SchemaVersion | 54 | public override string SchemaVersion |
55 | { | 55 | { |
56 | get | 56 | get |
57 | { | 57 | { |
58 | return schemaVersion; | 58 | return schemaVersion; |
59 | } | 59 | } |
60 | } | 60 | } |
61 | /// <summary> | 61 | /// <summary> |
62 | /// Gets or sets the name of the version. | 62 | /// Gets or sets the name of the version. |
63 | /// </summary> | 63 | /// </summary> |
64 | /// <value>The name of the version.</value> | 64 | /// <value>The name of the version.</value> |
65 | public override string VersionName | 65 | public override string VersionName |
66 | { | 66 | { |
67 | get | 67 | get |
68 | { | 68 | { |
69 | return versionName; | 69 | return versionName; |
70 | } | 70 | } |
71 | } | 71 | } |
72 | /// <summary> | 72 | /// <summary> |
73 | /// Gets or sets the version. | 73 | /// Gets or sets the version. |
74 | /// </summary> | 74 | /// </summary> |
75 | /// <value>The version.</value> | 75 | /// <value>The version.</value> |
76 | public override VSVersion Version | 76 | public override VSVersion Version |
77 | { | 77 | { |
78 | get | 78 | get |
79 | { | 79 | { |
80 | return version; | 80 | return version; |
81 | } | 81 | } |
82 | } | 82 | } |
83 | /// <summary> | 83 | /// <summary> |
84 | /// Gets the name. | 84 | /// Gets the name. |
85 | /// </summary> | 85 | /// </summary> |
86 | /// <value>The name.</value> | 86 | /// <value>The name.</value> |
87 | public override string Name | 87 | public override string Name |
88 | { | 88 | { |
89 | get | 89 | get |
90 | { | 90 | { |
91 | return name; | 91 | return name; |
92 | } | 92 | } |
93 | } | 93 | } |
94 | 94 | ||
95 | protected override string GetToolsVersionXml(FrameworkVersion frameworkVersion) | 95 | protected override string GetToolsVersionXml(FrameworkVersion frameworkVersion) |
96 | { | 96 | { |
@@ -110,18 +110,18 @@ namespace Prebuild.Core.Targets | |||
110 | get { return "# Visual Studio 2008"; } | 110 | get { return "# Visual Studio 2008"; } |
111 | } | 111 | } |
112 | 112 | ||
113 | #endregion | 113 | #endregion |
114 | 114 | ||
115 | #region Constructors | 115 | #region Constructors |
116 | 116 | ||
117 | /// <summary> | 117 | /// <summary> |
118 | /// Initializes a new instance of the <see cref="VS2005Target"/> class. | 118 | /// Initializes a new instance of the <see cref="VS2005Target"/> class. |
119 | /// </summary> | 119 | /// </summary> |
120 | public VS2008Target() | 120 | public VS2008Target() |
121 | : base() | 121 | : base() |
122 | { | 122 | { |
123 | } | 123 | } |
124 | 124 | ||
125 | #endregion | 125 | #endregion |
126 | } | 126 | } |
127 | } | 127 | } |