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

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.MacDev/XcodeIntegration/PBXResourcesBuildPhase.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
 
// PBXResourcesBuildPhase.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 PBXResourcesBuildPhase : XcodeObject
36
 
        {
37
 
                List<PBXBuildFile> resources;
38
 
 
39
 
                public PBXResourcesBuildPhase ()
40
 
                {
41
 
                        resources = new List<PBXBuildFile> ();
42
 
                }
43
 
 
44
 
                public void AddResource (PBXBuildFile resource)
45
 
                {
46
 
                        resource.BuildPhase = this;
47
 
                        resources.Add (resource);
48
 
                }
49
 
 
50
 
                public override string Name {
51
 
                        get { return "Resources"; }
52
 
                }
53
 
 
54
 
                public override XcodeType Type {
55
 
                        get {
56
 
                                return XcodeType.PBXResourcesBuildPhase;
57
 
                        }
58
 
                }
59
 
 
60
 
                public override string ToString ()
61
 
                {
62
 
                        var sb = new StringBuilder ();
63
 
 
64
 
                        sb.AppendFormat ("{0} /* {1} */ = {{\n", Token, Name);
65
 
                        sb.AppendFormat ("\t\t\tisa = {0};\n", Type);
66
 
                        sb.AppendFormat ("\t\t\tbuildActionMask = 2147483647;\n");
67
 
                        sb.AppendFormat ("\t\t\tfiles = (\n");
68
 
                        foreach (PBXBuildFile resource in resources)
69
 
                                sb.AppendFormat ("\t\t\t\t{0} /* {1} in {2} */,\n", resource.Token, resource.Name, Name);
70
 
                        sb.AppendFormat ("\t\t\t);\n");
71
 
                        sb.AppendFormat ("\t\t\trunOnlyForDeploymentPostprocessing = 0;\n");
72
 
                        sb.AppendFormat ("\t\t}};");
73
 
                
74
 
                        return sb.ToString ();
75
 
                }
76
 
        }
77
 
}