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

« back to all changes in this revision

Viewing changes to external/mono-addins/Test/CommandExtension/CommandExtension.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          = "CommandExtension"
 
2
       namespace   = "SimpleApp"
 
3
       name        = "CommandExtension"
 
4
       author      = "Lluis Sanchez"
 
5
       copyright   = "GPL"
 
6
       description = "CommandExtension"
 
7
           category    = "SimpleApp/Extensions"
 
8
       version     = "0.1.0">
 
9
 
 
10
        <Runtime>
 
11
                <Import assembly="CommandExtension.dll"/>
 
12
        </Runtime>
 
13
        
 
14
        <Dependencies>
 
15
                <Addin id="Core" version="0.1.0" />
 
16
        </Dependencies>
 
17
 
 
18
        <!-- Adds a new extension node type to the SimpleApp/Writers extension point,
 
19
             to be used by other add-ins -->
 
20
        <ExtensionPoint path = "/SimpleApp/Writers">
 
21
                <ExtensionNode name="Command" type="CommandExtension.CommandExtensionNode"/>
 
22
        </ExtensionPoint>
 
23
        
 
24
        <ExtensionPoint path = "/SimpleApp/Writers2">
 
25
                <ExtensionNode name="Command" type="CommandExtension.CommandExtensionNode"/>
 
26
        </ExtensionPoint>
 
27
        
 
28
        <ExtensionPoint path = "/SimpleApp/ExtraWriters">
 
29
                <ExtensionNode name="Command" type="CommandExtension.CommandExtensionNode"/>
 
30
        </ExtensionPoint>
 
31
 
 
32
</Addin>