diff options
author | UbitUmarov | 2017-08-31 11:23:03 +0100 |
---|---|---|
committer | UbitUmarov | 2017-08-31 11:23:03 +0100 |
commit | b9fc629bdfd050a7ded26aefec5d3ed3d97ce916 (patch) | |
tree | 648547e88f5a13f0962486a86ea4896aa92b9556 /Prebuild/src/Core/Targets/VS2012Target.cs | |
parent | fix a prebuild VS targets assembly name (diff) | |
download | opensim-SC-b9fc629bdfd050a7ded26aefec5d3ed3d97ce916.zip opensim-SC-b9fc629bdfd050a7ded26aefec5d3ed3d97ce916.tar.gz opensim-SC-b9fc629bdfd050a7ded26aefec5d3ed3d97ce916.tar.bz2 opensim-SC-b9fc629bdfd050a7ded26aefec5d3ed3d97ce916.tar.xz |
fix a whitecode bug, add missing files
Diffstat (limited to 'Prebuild/src/Core/Targets/VS2012Target.cs')
-rw-r--r-- | Prebuild/src/Core/Targets/VS2012Target.cs | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/Prebuild/src/Core/Targets/VS2012Target.cs b/Prebuild/src/Core/Targets/VS2012Target.cs new file mode 100644 index 0000000..e21c97a --- /dev/null +++ b/Prebuild/src/Core/Targets/VS2012Target.cs | |||
@@ -0,0 +1,138 @@ | |||
1 | using System; | ||
2 | |||
3 | using Prebuild.Core.Attributes; | ||
4 | using Prebuild.Core.Nodes; | ||
5 | |||
6 | namespace Prebuild.Core.Targets | ||
7 | { | ||
8 | |||
9 | /// <summary> | ||
10 | /// | ||
11 | /// </summary> | ||
12 | [Target("vs2012")] | ||
13 | public class VS2012Target : VSGenericTarget | ||
14 | { | ||
15 | #region Fields | ||
16 | |||
17 | string solutionVersion = "12.00"; | ||
18 | string productVersion = "11.0.61030.0"; | ||
19 | string schemaVersion = "2.0"; | ||
20 | string versionName = "Visual Studio 2012"; | ||
21 | string name = "vs2012"; | ||
22 | VSVersion version = VSVersion.VS11; | ||
23 | |||
24 | #endregion | ||
25 | |||
26 | #region Properties | ||
27 | |||
28 | /// <summary> | ||
29 | /// Gets or sets the solution version. | ||
30 | /// </summary> | ||
31 | /// <value>The solution version.</value> | ||
32 | public override string SolutionVersion | ||
33 | { | ||
34 | get | ||
35 | { | ||
36 | return solutionVersion; | ||
37 | } | ||
38 | } | ||
39 | |||
40 | /// <summary> | ||
41 | /// Gets or sets the product version. | ||
42 | /// </summary> | ||
43 | /// <value>The product version.</value> | ||
44 | public override string ProductVersion | ||
45 | { | ||
46 | get | ||
47 | { | ||
48 | return productVersion; | ||
49 | } | ||
50 | } | ||
51 | |||
52 | /// <summary> | ||
53 | /// Gets or sets the schema version. | ||
54 | /// </summary> | ||
55 | /// <value>The schema version.</value> | ||
56 | public override string SchemaVersion | ||
57 | { | ||
58 | get | ||
59 | { | ||
60 | return schemaVersion; | ||
61 | } | ||
62 | } | ||
63 | |||
64 | /// <summary> | ||
65 | /// Gets or sets the name of the version. | ||
66 | /// </summary> | ||
67 | /// <value>The name of the version.</value> | ||
68 | public override string VersionName | ||
69 | { | ||
70 | get | ||
71 | { | ||
72 | return versionName; | ||
73 | } | ||
74 | } | ||
75 | |||
76 | /// <summary> | ||
77 | /// Gets or sets the version. | ||
78 | /// </summary> | ||
79 | /// <value>The version.</value> | ||
80 | public override VSVersion Version | ||
81 | { | ||
82 | get | ||
83 | { | ||
84 | return version; | ||
85 | } | ||
86 | } | ||
87 | |||
88 | /// <summary> | ||
89 | /// Gets the name. | ||
90 | /// </summary> | ||
91 | /// <value>The name.</value> | ||
92 | public override string Name | ||
93 | { | ||
94 | get | ||
95 | { | ||
96 | return name; | ||
97 | } | ||
98 | } | ||
99 | |||
100 | protected override string GetToolsVersionXml(FrameworkVersion frameworkVersion) | ||
101 | { | ||
102 | switch (frameworkVersion) | ||
103 | { | ||
104 | case FrameworkVersion.v4_6_1: | ||
105 | case FrameworkVersion.v4_6: | ||
106 | return "ToolsVersion=\"14.0\""; | ||
107 | case FrameworkVersion.v4_5_1: | ||
108 | case FrameworkVersion.v4_5: | ||
109 | case FrameworkVersion.v4_0: | ||
110 | case FrameworkVersion.v3_5: | ||
111 | return "ToolsVersion=\"4.0\""; | ||
112 | case FrameworkVersion.v3_0: | ||
113 | return "ToolsVersion=\"3.0\""; | ||
114 | default: | ||
115 | return "ToolsVersion=\"2.0\""; | ||
116 | } | ||
117 | } | ||
118 | |||
119 | public override string SolutionTag | ||
120 | { | ||
121 | get { return "# Visual Studio 2012"; } | ||
122 | } | ||
123 | |||
124 | #endregion | ||
125 | |||
126 | #region Constructors | ||
127 | |||
128 | /// <summary> | ||
129 | /// Initializes a new instance of the <see cref="VS2005Target"/> class. | ||
130 | /// </summary> | ||
131 | public VS2012Target() | ||
132 | : base() | ||
133 | { | ||
134 | } | ||
135 | |||
136 | #endregion | ||
137 | } | ||
138 | } | ||