From ffc1428dff8e71952b43001a8fc6223daeeb5bcf Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Thu, 20 Dec 2007 11:30:56 +0000 Subject: * Added prototypical VS2008 target --- Prebuild/src/Core/Targets/VS2008Target.cs | 58 +++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 Prebuild/src/Core/Targets/VS2008Target.cs (limited to 'Prebuild/src/Core/Targets/VS2008Target.cs') 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 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Prebuild.Core.Attributes; + +namespace Prebuild.Core.Targets +{ + [Target("vs2008")] + public class VS2008Target : VS2005Target + { + protected override string SolutionTag + { + get { return "# Visual Studio 2008"; } + } + + protected override string SolutionVersion + { + get + { + return "10.00"; + } + } + + protected override string VersionName + { + get + { + return "Visual C# 2008"; + } + } + + protected override string ToolsVersionXml + { + get + { + return " ToolsVersion=\"3.5\""; + } + } + + + // TODO: This needs updating! + protected override string ProductVersion + { + get + { + return "9.0.20706"; + } + } + + public override string Name + { + get + { + return "vs2008"; + } + } + } +} -- cgit v1.1