/// <summary>
 /// Adds a plug-in based on it's <see cref="SolidPlugIn"/> implementation
 /// </summary>
 /// <typeparam name="T">The class that implements the <see cref="SolidPlugIn"/></typeparam>
 /// </param>
 public void AddPlugIn <T>()
 {
     PlugInIntegration.AddPlugIn <T>();
 }
 /// <summary>
 /// Adds a plug-in based on it's <see cref="SolidPlugIn"/> implementation
 /// </summary>
 /// <typeparam name="fullPath">The absolute path to the plug-in dll</typeparam>
 public void AddPlugIn(string fullPath)
 {
     PlugInIntegration.AddPlugIn(fullPath);
 }