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

« back to all changes in this revision

Viewing changes to external/mono-addins/Test/UnitTests/SimpleApp.addin.xml

  • 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
<Addin id          = "Core"
 
2
       namespace   = "SimpleApp"
 
3
           category    = "SimpleApp"
 
4
           isroot      = "true"
 
5
       version     = "0.1.0">
 
6
 
 
7
        <Runtime>
 
8
                <Import assembly="UnitTests.dll"/>
 
9
        </Runtime>
 
10
        
 
11
        <Header>
 
12
                <Name>A simple application</Name>
 
13
                <Name locale="ca">Una aplicació simple</Name>
 
14
                <Description>SimpleApp description</Description>
 
15
                <Author>Lluis Sanchez</Author>
 
16
                <Copyright>GPL</Copyright>
 
17
                <Prop1>Val1</Prop1>
 
18
                <Prop1 locale="ca-ES">Val1Cat</Prop1>
 
19
        </Header>
 
20
        
 
21
        <!-- Extension sets -->
 
22
        
 
23
        <ExtensionNodeSet id = "WriterSet" >
 
24
                <ExtensionNode name="Type">
 
25
                        <Description>A type that implements IWriter</Description>
 
26
                </ExtensionNode>
 
27
        </ExtensionNodeSet>
 
28
 
 
29
        <!-- New extension points -->
 
30
        
 
31
        <ConditionType id="GlobalInfo" type="SimpleApp.GlobalInfoCondition" />
 
32
        
 
33
        <ExtensionPoint path = "/SimpleApp/ExtraWriters" name = "Handlers">
 
34
                <Description>Simple extensions to the simple app.</Description>
 
35
                <ExtensionNodeSet id = "WriterSet" />
 
36
                <Condition id = "InputParameter" />
 
37
        </ExtensionPoint>
 
38
 
 
39
        <ExtensionPoint path = "/SimpleApp/Writers2">
 
40
                <ExtensionNodeSet id = "WriterSet" />
 
41
        </ExtensionPoint>
 
42
        
 
43
        <ExtensionPoint path = "/SimpleApp/Items">
 
44
                <ExtensionNode type="UnitTests.ItemSetNode" />
 
45
        </ExtensionPoint>
 
46
 
 
47
        <ExtensionPoint path = "/SimpleApp/NodeWithChildren">
 
48
                <ExtensionNode name="Node">
 
49
                        <ExtensionNode name="Child" />
 
50
                </ExtensionNode>
 
51
        </ExtensionPoint>
 
52
        
 
53
        <ExtensionPoint path = "/SimpleApp/NodesWithAttribute">
 
54
                <ExtensionNode name="WithAtt" type="UnitTests.NodeWithAttribute" />
 
55
        </ExtensionPoint>
 
56
        
 
57
        <ExtensionPoint path = "/SimpleApp/InstallUninstallTest">
 
58
                <ExtensionNode name="Node" type="UnitTests.ItemSetNode" />
 
59
        </ExtensionPoint>
 
60
        
 
61
        <!-- Extensions -->
 
62
        
 
63
        <Extension path="/SimpleApp/NodeWithChildren">
 
64
                <Node id="node1" type="test">
 
65
                        <Child id="child1" type="test" />
 
66
                        <Child id="child2" type="test" />
 
67
                </Node>
 
68
                
 
69
                <!-- FileContentExtension add one Node
 
70
                     SystemInfoExtension adds one child to node1
 
71
                -->
 
72
        </Extension>
 
73
        
 
74
</Addin>