C# Class Mono.Addins.ImportAddinFileAttribute

Declares an add-in file import
An add-in may be composed by several assemblies and data files. Data files 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. This information is 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
ImportAddinFileAttribute ( string filePath ) : System

Initializes a new instance

Method Details

ImportAddinFileAttribute() public method

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