This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 95
AddinAttribute
Caleb Morris edited this page Nov 3, 2015
·
1 revision
Home > Reference Manual > Description of Add ins and Add in Roots > Description models > AddinAttribute |
---|
Possible properties to set when adding the AddinAttribute to an add-in. Each has their own attribute to individually add.
Property | Type | Default | Description |
---|---|---|---|
Id | string | string.empty | Identifier of the add-in. Often the same as Namespace. |
Category | string | string.Empty | The category for the add-in to be listed under when published |
Namespace | string | string.empty | The Namespace of the add-in |
Url | string | string.empty | Url to a web page with more information about the add-in |
Version | string | string.empty | Current version of the add-in |
CompatVersion | string | string.Empty | Version of the add-in with which this add-in is backwards compatible |
EnabledByDefault | bool | true | EnabledByDefault |
Flags | AddinFlags | None | Add-in behavior flags |
// AddinInfo.cs
[assembly:Addin (
"ExampleAddin",
Namespace = "ExampleAddin",
Version = "0.0.1"
)]
- Extension Points and Extensions
- Querying Extension Points
- Type Extension Metadata
- Data-only Extension Points
- Data Files and Resources
- About Lazy Loading
- Thread Safety
- The Add-in Registry
- Addin Discovery
- Creating and Managing Add-in Packages
- Advanced Concepts