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

A Flexible Plugin System

Rate me:
Please Sign up or sign in to vote.
4.98/5 (25 votes)
3 Sep 2008LGPL34 min read 130.8K   1.8K   163  
A generic plugin system used to load and manage plugins

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Fadd", "fadd\Fadd.csproj", "{C51501FE-379C-4908-8692-3D26444D50C2}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Fadd.Globalization.Yaml", "Fadd.Globalization.Yaml\Fadd.Globalization.Yaml.csproj", "{D3ABC149-8A84-4A01-8EAC-27196E0FCFBA}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExamplePlugin", "Examples\Plugins\ExamplePlugin\ExamplePlugin.csproj", "{671D217C-12FC-49D1-990F-1AAF83150CDE}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExamplePlugin.Shared", "Examples\Plugins\ExamplePlugin.Shared\ExamplePlugin.Shared.csproj", "{3E6FD046-6E5A-4392-8028-3EA6C7A89D97}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExampleApplication", "Examples\Plugins\ExampleApplication\ExampleApplication.csproj", "{82CD6501-DA16-462E-BFD9-CA4BADDFB482}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExampleApplication.Shared", "Examples\Plugins\ExampleApplication.Shared\ExampleApplication.Shared.csproj", "{2E909CD0-1ED9-4C56-87F7-B678429F1905}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{1C0B8885-57DD-4C8C-B1B8-24BD1B8B7279}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{14A91863-817C-4081-A0B5-2464A9EF4906}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{C51501FE-379C-4908-8692-3D26444D50C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C51501FE-379C-4908-8692-3D26444D50C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C51501FE-379C-4908-8692-3D26444D50C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C51501FE-379C-4908-8692-3D26444D50C2}.Release|Any CPU.Build.0 = Release|Any CPU
		{D3ABC149-8A84-4A01-8EAC-27196E0FCFBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{D3ABC149-8A84-4A01-8EAC-27196E0FCFBA}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{D3ABC149-8A84-4A01-8EAC-27196E0FCFBA}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{D3ABC149-8A84-4A01-8EAC-27196E0FCFBA}.Release|Any CPU.Build.0 = Release|Any CPU
		{671D217C-12FC-49D1-990F-1AAF83150CDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{671D217C-12FC-49D1-990F-1AAF83150CDE}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{671D217C-12FC-49D1-990F-1AAF83150CDE}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{671D217C-12FC-49D1-990F-1AAF83150CDE}.Release|Any CPU.Build.0 = Release|Any CPU
		{3E6FD046-6E5A-4392-8028-3EA6C7A89D97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{3E6FD046-6E5A-4392-8028-3EA6C7A89D97}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{3E6FD046-6E5A-4392-8028-3EA6C7A89D97}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{3E6FD046-6E5A-4392-8028-3EA6C7A89D97}.Release|Any CPU.Build.0 = Release|Any CPU
		{82CD6501-DA16-462E-BFD9-CA4BADDFB482}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{82CD6501-DA16-462E-BFD9-CA4BADDFB482}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{82CD6501-DA16-462E-BFD9-CA4BADDFB482}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{82CD6501-DA16-462E-BFD9-CA4BADDFB482}.Release|Any CPU.Build.0 = Release|Any CPU
		{2E909CD0-1ED9-4C56-87F7-B678429F1905}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{2E909CD0-1ED9-4C56-87F7-B678429F1905}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{2E909CD0-1ED9-4C56-87F7-B678429F1905}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{2E909CD0-1ED9-4C56-87F7-B678429F1905}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
	GlobalSection(NestedProjects) = preSolution
		{14A91863-817C-4081-A0B5-2464A9EF4906} = {1C0B8885-57DD-4C8C-B1B8-24BD1B8B7279}
		{82CD6501-DA16-462E-BFD9-CA4BADDFB482} = {14A91863-817C-4081-A0B5-2464A9EF4906}
		{2E909CD0-1ED9-4C56-87F7-B678429F1905} = {14A91863-817C-4081-A0B5-2464A9EF4906}
		{671D217C-12FC-49D1-990F-1AAF83150CDE} = {14A91863-817C-4081-A0B5-2464A9EF4906}
		{3E6FD046-6E5A-4392-8028-3EA6C7A89D97} = {14A91863-817C-4081-A0B5-2464A9EF4906}
	EndGlobalSection
EndGlobal

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 GNU Lesser General Public License (LGPLv3)


Written By
Founder 1TCompany AB
Sweden Sweden

Comments and Discussions