aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Targets/VS2008Target.cs
blob: fa8a8896323f20f7e40efa389b7fb99f5f6c749a (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
57
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.21022";
            }
        }

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