aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild
diff options
context:
space:
mode:
authorJeff Ames2007-12-28 08:56:44 +0000
committerJeff Ames2007-12-28 08:56:44 +0000
commit1a484fcabfd7311757f2db699ced0bacd2b126a5 (patch)
tree7cea443d3c5e95fa3839effd9f2b1222d7d93ba2 /Prebuild
parentPatch from Johan: LibSL updated to the latest revision (1568) and all packets... (diff)
downloadopensim-SC-1a484fcabfd7311757f2db699ced0bacd2b126a5.zip
opensim-SC-1a484fcabfd7311757f2db699ced0bacd2b126a5.tar.gz
opensim-SC-1a484fcabfd7311757f2db699ced0bacd2b126a5.tar.bz2
opensim-SC-1a484fcabfd7311757f2db699ced0bacd2b126a5.tar.xz
Set svn:eol-style.
Diffstat (limited to 'Prebuild')
-rw-r--r--Prebuild/src/Core/Targets/VS2008Target.cs112
1 files changed, 56 insertions, 56 deletions
diff --git a/Prebuild/src/Core/Targets/VS2008Target.cs b/Prebuild/src/Core/Targets/VS2008Target.cs
index 08854ab..88bb5e6 100644
--- a/Prebuild/src/Core/Targets/VS2008Target.cs
+++ b/Prebuild/src/Core/Targets/VS2008Target.cs
@@ -1,56 +1,56 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using Prebuild.Core.Attributes; 4using Prebuild.Core.Attributes;
5 5
6namespace Prebuild.Core.Targets 6namespace Prebuild.Core.Targets
7{ 7{
8 [Target("vs2008")] 8 [Target("vs2008")]
9 public class VS2008Target : VS2005Target 9 public class VS2008Target : VS2005Target
10 { 10 {
11 protected override string SolutionTag 11 protected override string SolutionTag
12 { 12 {
13 get { return "# Visual Studio 2008"; } 13 get { return "# Visual Studio 2008"; }
14 } 14 }
15 15
16 protected override string SolutionVersion 16 protected override string SolutionVersion
17 { 17 {
18 get 18 get
19 { 19 {
20 return "10.00"; 20 return "10.00";
21 } 21 }
22 } 22 }
23 23
24 protected override string VersionName 24 protected override string VersionName
25 { 25 {
26 get 26 get
27 { 27 {
28 return "Visual C# 2008"; 28 return "Visual C# 2008";
29 } 29 }
30 } 30 }
31 31
32 protected override string ToolsVersionXml 32 protected override string ToolsVersionXml
33 { 33 {
34 get 34 get
35 { 35 {
36 return " ToolsVersion=\"3.5\""; 36 return " ToolsVersion=\"3.5\"";
37 } 37 }
38 } 38 }
39 39
40 protected override string ProductVersion 40 protected override string ProductVersion
41 { 41 {
42 get 42 get
43 { 43 {
44 return "9.0.21022"; 44 return "9.0.21022";
45 } 45 }
46 } 46 }
47 47
48 public override string Name 48 public override string Name
49 { 49 {
50 get 50 get
51 { 51 {
52 return "vs2008"; 52 return "vs2008";
53 } 53 }
54 } 54 }
55 } 55 }
56} 56}