aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Targets/VS2008Target.cs
blob: 88bb5e6a455a47d60ef3f62ae3331d92e76f3cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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\"";
            }
        }

        protected override string ProductVersion
        {
            get
            {
                return "9.0.21022";
            }
        }

        public override string Name
        {
            get
            {
                return "vs2008";
            }
        }
    }
}