Click here to Skip to main content
15,886,724 members
Articles / Programming Languages / C#

Plugins Manager

Rate me:
Please Sign up or sign in to vote.
4.00/5 (6 votes)
22 May 2008CPOL3 min read 50.7K   1.9K   62  
A plugins manager class to manage a plugins structure
#region Using directives

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

#endregion

// Informations
[assembly: AssemblyTitle("Plugin Manager for .NET 2.0")]
[assembly: AssemblyDescription("Manger for plugins structure")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("LBSoft di Bonotto Luca")]
[assembly: AssemblyProduct("Plugin Manager")]
[assembly: AssemblyCopyright("Copyright � LBSoft di Bonotto Luca 2008")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// COM visibility
[assembly: ComVisible(false)]

// GUID of the assembly
[assembly: Guid("21DD92DE-9C84-4a62-8847-836DE507D022")]

// Versions
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Promax Srl
Italy Italy
Software developer with over 16 years of experience, specializing on MFC/C++, C# and software architecture


Company : Promax S.r.l.


Comments and Discussions