~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.MacDev/XcodeIntegration/XCConfigurationList.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// 
2
 
// XCConfigurationList.cs
3
 
//  
4
 
// Authors:
5
 
//       Geoff Norton <gnorton@novell.com>
6
 
//       Jeffrey Stedfast <jeff@xamarin.com>
7
 
// 
8
 
// Copyright (c) 2011 Novell, Inc.
9
 
// Copyright (c) 2011 Xamarin Inc.
10
 
// 
11
 
// Permission is hereby granted, free of charge, to any person obtaining a copy
12
 
// of this software and associated documentation files (the "Software"), to deal
13
 
// in the Software without restriction, including without limitation the rights
14
 
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
 
// copies of the Software, and to permit persons to whom the Software is
16
 
// furnished to do so, subject to the following conditions:
17
 
// 
18
 
// The above copyright notice and this permission notice shall be included in
19
 
// all copies or substantial portions of the Software.
20
 
// 
21
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
 
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
 
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
 
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
 
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
 
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27
 
// THE SOFTWARE.
28
 
 
29
 
using System;
30
 
using System.Text;
31
 
using System.Collections.Generic;
32
 
 
33
 
namespace MonoDevelop.MacDev.XcodeIntegration
34
 
{
35
 
        class XCConfigurationList : XcodeObject
36
 
        {
37
 
                List<XCBuildConfiguration> configurations;
38
 
 
39
 
                public XCConfigurationList ()
40
 
                {
41
 
                        configurations = new List<XCBuildConfiguration> ();
42
 
                }
43
 
 
44
 
                public void AddBuildConfiguration (XCBuildConfiguration configuration)
45
 
                {
46
 
                        if (DefaultConfiguration == null)
47
 
                                DefaultConfiguration = configuration;
48
 
                        
49
 
                        configurations.Add (configuration);
50
 
                }
51
 
 
52
 
                public XCBuildConfiguration DefaultConfiguration {
53
 
                        get; set;
54
 
                }
55
 
 
56
 
                public override string Name {
57
 
                        get {
58
 
                                if (Target != null)
59
 
                                        return string.Format ("Build configuration list for {0} \"{1}\"", Target.Type, Target.Name);
60
 
                                else
61
 
                                        return "Build configuration list";
62
 
                        }
63
 
                }
64
 
 
65
 
                public XcodeObject Target {
66
 
                        get; set;
67
 
                }
68
 
 
69
 
                public override XcodeType Type {
70
 
                        get {
71
 
                                return XcodeType.XCConfigurationList;
72
 
                        }
73
 
                }
74
 
 
75
 
                public override string ToString ()
76
 
                {
77
 
                        var sb = new StringBuilder ();
78
 
 
79
 
                        sb.AppendFormat ("{0} /* {1} */ = {{\n", Token, Name);
80
 
                        sb.AppendFormat ("\t\t\tisa = {0};\n", Type);
81
 
                        sb.AppendFormat ("\t\t\tbuildConfigurations = (\n");
82
 
                        foreach (XCBuildConfiguration config in configurations) 
83
 
                                sb.AppendFormat ("\t\t\t\t{0} /* {1} */,\n", config.Token, config.Name);
84
 
                        sb.AppendFormat ("\t\t\t);\n");
85
 
                        sb.AppendFormat ("\t\t\tdefaultConfigurationIsVisible = 0;\n");
86
 
                        if (DefaultConfiguration != null)
87
 
                                sb.AppendFormat ("\t\t\tdefaultConfigurationName = {0};\n", DefaultConfiguration.Name);
88
 
                        sb.AppendFormat ("\t\t}};");
89
 
 
90
 
                        return sb.ToString ();
91
 
                }
92
 
        }
93
 
}