aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Targets/VS2008Target.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Prebuild/src/Core/Targets/VS2008Target.cs')
-rw-r--r--Prebuild/src/Core/Targets/VS2008Target.cs58
1 files changed, 58 insertions, 0 deletions
diff --git a/Prebuild/src/Core/Targets/VS2008Target.cs b/Prebuild/src/Core/Targets/VS2008Target.cs
new file mode 100644
index 0000000..6074915
--- /dev/null
+++ b/Prebuild/src/Core/Targets/VS2008Target.cs
@@ -0,0 +1,58 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using Prebuild.Core.Attributes;
5
6namespace Prebuild.Core.Targets
7{
8 [Target("vs2008")]
9 public class VS2008Target : VS2005Target
10 {
11 protected override string SolutionTag
12 {
13 get { return "# Visual Studio 2008"; }
14 }
15
16 protected override string SolutionVersion
17 {
18 get
19 {
20 return "10.00";
21 }
22 }
23
24 protected override string VersionName
25 {
26 get
27 {
28 return "Visual C# 2008";
29 }
30 }
31
32 protected override string ToolsVersionXml
33 {
34 get
35 {
36 return " ToolsVersion=\"3.5\"";
37 }
38 }
39
40
41 // TODO: This needs updating!
42 protected override string ProductVersion
43 {
44 get
45 {
46 return "9.0.20706";
47 }
48 }
49
50 public override string Name
51 {
52 get
53 {
54 return "vs2008";
55 }
56 }
57 }
58}