Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

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

Properties

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

Example

// AddinInfo.cs
[assembly:Addin (
	"ExampleAddin", 
	Namespace = "ExampleAddin",
	Version = "0.0.1"
)]
Clone this wiki locally