Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 9 and Version 10 of Documentation/DevelopmentCenter/CreateNewPluginUsingVS


Ignore:
Timestamp:
06/26/14 18:20:13 (10 years ago)
Author:
abeham
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/DevelopmentCenter/CreateNewPluginUsingVS

    v9 v10  
    11= Quick guide: Create a new plugin with Visual Studio =
    2 We assume that you have obtained the source as described in [[Documentation/DevelopmentCenter/DownloadAndBuildSource]].
     2We assume that you have obtained the source as described in [[Documentation/DevelopmentCenter/DownloadAndBuildSource|Quick guide: Download and build sources]]. We assume your directory structure looks as follows:
    33
    44[[Image(working_dir.png)]]
    55
    6 In this case the complete path is {{{C:\HL\trunk\}}}.
     6== A new solution ==
     7We will now create a new Visual Studio solution and add a class library project which will become the HeuristicLab plugin.
    78
    8 
    9 == A new solution ==
    10 We will now create a new Visual Studio solution and project which will become the !HeuristicLab plugin.
    11 
    12 Start Visual Studio and create a new C# Class Library project:
     9 * Open a new instance of Visual Studio 2012 or later
     10 * Select "File > New > Project..." or press <Ctrl+Shift+N>
     11 * In the dialog on the top select ".NET Framework 4"
     12 * 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
     13 * Use "GreatIdea" as Name and click "Browse..." to select the `extension` folder and click Ok
     14 * In the Solution Explorer right-click the "GreatIdea" solution and select "Add > New Project..."
     15 * On the right choose "Visual C#" and select the "Class Library" template
     16 * As name pick "HeuristicLab.GreatIdea.ThePlugin"
    1317
    1418[[Image(create_solution.png)]]