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.
ARES Commander 2024 Core SDK Plugin
ARES Commander 2024 FRX Application
ARES Commander 2024 FRX Plugin
ARES Commander 2024 VB.NET Plugin
ARES Command Commander 2024 C# Plugin
...
ARES Commander 2024 Core SDK Plugin Project
...
Prerequisite: ARES Commander SDK must be installed to build this type of projects and environment variable ARES_SDK must be set to SDK path build the project.
Load: Use LOADAPPLICATION or APPLOAD to load this type of plugin DLL.
...
Prerequisite: ARES Commander SDK must be installed and environment variable FXARX must be set to build this type of projects, 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 or /APPLOAD commands to load this type of FRX plugin DLL.
ARES Commander 2024 FRX Plugin Project
...
Prerequisite: ARES Commander SDK must be installed and environment variable FXARX must be set to build this type of projects, 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 or /APPLOAD commands to load this type of FRX plugin DLL.
ARES Commander 2024 VB.NET Plugin Project
...