1

Closed

Plugin folder / pdb files

description

I propose to add this change to the file PluginManager.cs, line 118:
 
  • string[] directoryFiles = Directory.GetFiles(pluginsPath);
  • string[] directoryFiles = Directory.GetFiles(pluginsPath, "*.dll");
     
    When building a plugin as a separate project, the output will have a pdb file that goes along with it and the editor will fail when loading as it will try to load the pdb file as a plugin. By enumerating only dll files, this doesn't happen.
Closed Nov 5, 2011 at 2:58 PM by colinvella
Fix to be released in tIDE v2.0.5

comments

colinvella wrote Nov 4, 2011 at 9:37 AM

Thanks for the suggestion! It will go in the next release.