Changes between Version 2 and Version 3 of Documentation/Howto/ImplementAHLWebAppPlugin
- Timestamp:
- 06/30/15 17:10:53 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/Howto/ImplementAHLWebAppPlugin
v2 v3 10 10 * Use the "Class Library" template 11 11 * Use "HeuristicLab.Services.WebApp.Example" as name 12 [[Image(/raw-attachment/wiki/Documentation/Howto/ImplementAHLWebAppPlugin/create_project_vs.PNG)]] 12 13 13 14 == Configuring the project == … … 15 16 Every plugin has at least a reference to Microsoft ASP.NET Web API, which is needed to create a controller. 16 17 * Open the NuGet Package Manager and add a reference to Microsoft ASP.NET Web API 18 [[Image(/raw-attachment/wiki/Documentation/Howto/ImplementAHLWebAppPlugin/nuget_project_references.PNG)]] 17 19 * If database access is required, add project references to HeuristicLab.Services.Hive and HeuristicLabServices.DataAccess 18 20 * Set the "Copy Local" property on these references to false. This references are provided by the WebApp and thus don't have to be deployed with every plugin. 19 21 [[Image(/raw-attachment/wiki/Documentation/Howto/ImplementAHLWebAppPlugin/references.PNG)]] 20 22 === Folder structure === 21 23