aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Targets/VS2008Target.cs
diff options
context:
space:
mode:
authorlbsa712007-12-20 11:30:56 +0000
committerlbsa712007-12-20 11:30:56 +0000
commitffc1428dff8e71952b43001a8fc6223daeeb5bcf (patch)
treef9f4fd08520a6ebef83038195289e765e645b5a1 /Prebuild/src/Core/Targets/VS2008Target.cs
parent* Added a configuration parameter on the Grid Server to disallow forceful ban... (diff)
downloadopensim-SC_OLD-ffc1428dff8e71952b43001a8fc6223daeeb5bcf.zip
opensim-SC_OLD-ffc1428dff8e71952b43001a8fc6223daeeb5bcf.tar.gz
opensim-SC_OLD-ffc1428dff8e71952b43001a8fc6223daeeb5bcf.tar.bz2
opensim-SC_OLD-ffc1428dff8e71952b43001a8fc6223daeeb5bcf.tar.xz
* Added prototypical VS2008 target
Diffstat (limited to '')
-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}