Cannot load the plug-in for 2014 error.

Hi,

I am trying to move an existing plugin to work with 2014. I tried changing just the properties or starting a new project and using the same code, but I keep getting this error:

“Cannot load the plug-in defined in “Trados2014Plugin.plugin.xml”. The plug-in contains references to SDL assemblies that have not been validated for use with third-party plugins."

The SDL assembly name is Sdl.FileTypeSupport.Framework.Core.Settings and the validation error is “SDL assembly reference is not public"

Thanks,Delfina

Parents Reply
  • The CU3 helped with this issue and only for  Sdl.FileTypeSupport.Framework.Core.Settings , but now I am getting the same error for  Sdl.FileTypeSupport.Framework.Integration.

    Here is part of the code that I am trying to use and it’s failing because of the missing assembly.

    using Sdl.FileTypeSupport.Framework.Integration;

    namespace Sdl.Sdk.FileTypeSupport.Samples.Bil

    {

       class TmImporter

       {

           public void importXLIFFFile(string tmPath, string importFilePath)

           {

               FileBasedTranslationMemory tm = new FileBasedTranslationMemory(tmPath);

               TranslationMemoryImporter importer = new TranslationMemoryImporter(tm.LanguageDirection);

               importer.ChunkSize = 20;

               GetImpotSettings(importer.ImportSettings);

               importer.BatchImported += new EventHandler<BatchImportedEventArgs>(importer_BatchImported);

               importer.FileTypeManager = new PocoFilterManager(true);

               importer.Import(importFilePath);

           }

      }

    }

    Please note that this is related to :community.sdl.com/.../3760.aspx

Children