Write a plugin for SAESteps: 1. Create a Class Library project, e.g. SAE.MyPlugin please keep assembly file name and name space same, otherwise SAE cannot load the assembly. 2. Add a reference to SimpleAssemblyExplorer.Plugin.dll. This assembly can be found in SAE archive file. 3. Add a class named Plugin SAE will use assembly file name + Plugin to load the assembly, e.g. SAE.MyPlugin.Plugin. And, you need to have at least a constructor with a IHost argument. 4. Implement interface SimpleAssemblyExplorer.Plugin.IPlugin 5. Build and put the assembly to SAE's Plugins directory 6. Open SAE to try the plugin Samples: You can get some SAE plugins source code from repository for reference: - SAE.Reflector
- SAE.EditFile
- SAE.ILMerge
- SAE.PluginSample
|