Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.addin.xml')
-rw-r--r--Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.addin.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.addin.xml b/Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.addin.xml
new file mode 100644
index 0000000..865ae4a
--- /dev/null
+++ b/Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.addin.xml
@@ -0,0 +1,13 @@
+<Addin>
+
+ <!-- This add-in depends on the HelloWorld v1.0 add-in root -->
+ <Dependencies>
+ <Addin id="HelloWorld" version="1.0" />
+ </Dependencies>
+
+ <!-- Register an extension for the /Commands extension point -->
+ <Extension path = "/Commands">
+ <Command class="HelloWorldAddin.HelloCommand" />
+ </Extension>
+
+</Addin>