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

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSMac/Properties/AddinInfo.cs')
-rw-r--r--samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSMac/Properties/AddinInfo.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSMac/Properties/AddinInfo.cs b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSMac/Properties/AddinInfo.cs
new file mode 100644
index 0000000..9feb19a
--- /dev/null
+++ b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSMac/Properties/AddinInfo.cs
@@ -0,0 +1,13 @@
+using Mono.Addins;
+using Mono.Addins.Description;
+
+[assembly: Addin(
+ "AsyncQuickInfoDemo_VSMac",
+ Namespace = "AsyncQuickInfoDemo_VSMac",
+ Version = "1.0"
+)]
+
+[assembly: AddinName("AsyncQuickInfoDemo_VSMac")]
+[assembly: AddinCategory("IDE extensions")]
+[assembly: AddinDescription("Demonstrates xPlat Async Quick Info in Visual Studio")]
+[assembly: AddinAuthor("Christian Gunderman")]