diff options
author | lbsa71 | 2007-12-20 11:30:56 +0000 |
---|---|---|
committer | lbsa71 | 2007-12-20 11:30:56 +0000 |
commit | ffc1428dff8e71952b43001a8fc6223daeeb5bcf (patch) | |
tree | f9f4fd08520a6ebef83038195289e765e645b5a1 /Prebuild/src/Core/Targets/VS2008Target.cs | |
parent | * Added a configuration parameter on the Grid Server to disallow forceful ban... (diff) | |
download | opensim-SC-ffc1428dff8e71952b43001a8fc6223daeeb5bcf.zip opensim-SC-ffc1428dff8e71952b43001a8fc6223daeeb5bcf.tar.gz opensim-SC-ffc1428dff8e71952b43001a8fc6223daeeb5bcf.tar.bz2 opensim-SC-ffc1428dff8e71952b43001a8fc6223daeeb5bcf.tar.xz |
* Added prototypical VS2008 target
Diffstat (limited to 'Prebuild/src/Core/Targets/VS2008Target.cs')
-rw-r--r-- | Prebuild/src/Core/Targets/VS2008Target.cs | 58 |
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 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using Prebuild.Core.Attributes; | ||
5 | |||
6 | namespace 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 | } | ||