Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Plugin developers can use ARES Command plugin template to start a project from scratch. This project template Wizard can be downloaded from Visual Studio Marketplace. It contains 5 project templates which enables to create FRX Simple plugin, FRX Application, C#, VB.NET, ARES C++Core SDK plugin projects for ARES Commander 2024.

  1. ARES Commander 2024 Core SDK Plugin

  2. ARES Commander 2024 FRX Application

  3. ARES Commander 2024 FRX Plugin

  4. ARES Commander 2024 VB.NET Plugin

  5. ARES Command Commander 2024 C# Plugin

...

ARES Commander 2024 Core SDK Plugin Project

...

Prerequisite: ARES Commander SDK must be installed and environment variable FXARX must be set, using a batch file or adding directly to the system. FXARX variable contains the location of the FxARX SDK path. If you use a batch file, please follow the code below:

Code Block
set FXARX=C:\SDKs\202X.X.X.XXXX_x64_ARES_SDK_FxARX
start myFRXapplication.sln

Just take in consideration that when you run the batch file the first time the solution is still not generated, in that case use as second line the location of your Visual Studio.

Load: Use ARES Commander LOADAPPLICATION/APPLOAD commands to load this type of FRX plugin.

...

Prerequisite: ARES Commander SDK must be installed and environment variable FXARX must be set, using a batch file or adding directly to the system. FXARX variable contains the location of the FxARX SDK path. If you use a batch file, please follow the code below:

Code Block
set FXARX=C:\SDKs\202X.X.X.XXXX_x64_ARES_SDK_FxARX
start myFRXapplication.sln

Just take in consideration that when you run the batch file the first time the solution is still not generated, in that case use as second line the location of your Visual Studio.

Load: Use ARES Commander LOADAPPLICATION/APPLOAD commands to load this type of FRX plugin.L.

ARES Commander 2024 VB.NET Plugin Project

...