コード例 #1
0
 /// <summary>
 /// Provides a hook for anything the toolbox wants to do when a project is opened.
 /// </summary>
 /// <param name="settings"></param>
 public static void SetupToolboxForCollection(CollectionSettings settings)
 {
     DecodableReaderToolSettings.CopyRelevantNewReaderSettings(settings);
 }
コード例 #2
0
 /// <summary>
 /// 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.
 /// </summary>
 /// <param name="newlyAddedFolderOfThePack"></param>
 internal static void CopyToolSettingsForBloomPack(string newlyAddedFolderOfThePack)
 {
     DecodableReaderToolSettings.CopyReaderToolsSettingsToWhereTheyBelong(newlyAddedFolderOfThePack);
 }