Bloom.Edit.ToolboxView.CopyToolSettingsForBloomPack C# (CSharp) Method

CopyToolSettingsForBloomPack() static private method

Some tool settings files may need moving to the correct locations when installing a bloompack. Currently only the reader tools needs to do this. We could try to do some trick where we call a method on all subclasses by reflection, but I think this is sufficient encapsulation.
static private CopyToolSettingsForBloomPack ( string newlyAddedFolderOfThePack ) : void
newlyAddedFolderOfThePack string
return void
        internal static void CopyToolSettingsForBloomPack(string newlyAddedFolderOfThePack)
        {
            DecodableReaderTool.CopyReaderToolsSettingsToWhereTheyBelong(newlyAddedFolderOfThePack);
        }