Index: src/Common/DelftTools.Shell.Core/IFileImporter.cs =================================================================== diff -u -rb952cbf07300e448057ccfa97ea3c97e21291fb3 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/DelftTools.Shell.Core/IFileImporter.cs (.../IFileImporter.cs) (revision b952cbf07300e448057ccfa97ea3c97e21291fb3) +++ src/Common/DelftTools.Shell.Core/IFileImporter.cs (.../IFileImporter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -32,12 +32,6 @@ IEnumerable SupportedItemTypes { get; } /// - /// Indicates if this importer can import on the - /// - /// Target object to check - bool CanImportOn(object targetObject); - - /// /// Indicates whether or not the importer can import at root level (folder/project). If true, the /// importer will always show up in the project->import list. If false this importer can only be /// retrieved by supported type, eg, in code. Use false for partial/composite importers and importers @@ -76,6 +70,12 @@ bool OpenViewAfterImport { get; } /// + /// Indicates if this importer can import on the + /// + /// Target object to check + bool CanImportOn(object targetObject); + + /// /// Imports data from the file with path /// object ImportItem(string path, object target = null);