Changes between Version 11 and Version 12 of Documentation/DevelopmentCenter/DownloadAndBuildSource
- Timestamp:
- 06/26/14 15:45:58 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/DevelopmentCenter/DownloadAndBuildSource
v11 v12 4 4 * Build `HeuristicLab.ExtLibs.sln` then build `HeuristicLab 3.3.sln` 5 5 6 For the not so impatient, this quickstart covers how to obtain and set up the development environment in order to extend HeuristicLab . If you have troubles please check the [[Documentation/FAQ|FAQ]].6 For the not so impatient, this quickstart covers how to obtain and set up the development environment in order to extend HeuristicLab with new plugins. If you have troubles please check the [[Documentation/FAQ|FAQ]]. 7 7 8 8 == Obtaining the source == … … 49 49 * Move the shortcut to HLRoot or another convenient place and rename it to "HeuristicLab 3.3 Optimizer" 50 50 51 == Creating our ownplugin ==51 == Creating a new plugin == 52 52 53 53 We now want to extend the functionality of HeuristicLab. … … 56 56 57 57 === New plugin with Visual Studio === 58 59 * Open a new instance of Visual Studio 2012 or later 60 * Select "File > New > Project..." or press <Ctrl+Shift+N> 61 * In the dialog on the top select ".NET Framework 4" 62 * On the right choose "Other Project Types > Visual Studio Solutions" and select the "Blank Solution" template or alternatively type "Blank Solution" in the search box on the right 63 * Use "MyPlugin" as Name and click "Browse..." to select the `extension` folder and click Ok 64 * In the Solution Explorer right-click the MyPlugin solution and select "Add > New Project..." 58 65 59 66 === New plugin with SharpDevelop ===