C# Class Mono.Addins.ImportAddinAssemblyAttribute

Declares an add-in assembly import
An add-in may be composed by several assemblies and data files. Assemblies must be declared in the main assembly using this attribute, or in the XML manifest. It is important to properly declare all files used by an add-in. For example, when a type from the add-in is required (e.g. an ICommand implementation), only properly declared assemblies will be checked. This information is also used by setup tools to know exactly what needs to be packaged when creating an add-in package, or to know what needs to be deleted when removing an add-in.
Inheritance: System.Attribute
Datei anzeigen Open project: slluis/mono-addins

Public Methods

Method Description
ImportAddinAssemblyAttribute ( string filePath ) : System

Initializes a new instance

Method Details

ImportAddinAssemblyAttribute() public method

Initializes a new instance
public ImportAddinAssemblyAttribute ( string filePath ) : System
filePath string /// Path to the assembly. Must be relative to the assembly declaring this attribute. ///
return System