Aero Framework is a curved, ultra-fast, zero-touch server framework. Designed to bypass the standard limitations of C# on Cfx.re server environments.
Built from the ground up to solve common threading and memory overhead in C# FiveM scripting.
Optimal execution structure. Processes custom events with near-zero latency and high stability.
Dynamically loads compiled assemblies from folder structure with safety dependency checks.
High-level abstractions for Database connection, Players, Vehicles, and entity controls.
Automatic reflection scan triggers command registering and event mapping instantly on startup.
Creating features in C# has never been this intuitive.
using Aero.API;
using Aero.API.Interfaces;
public class MyPluginConfig : IConfig
{
public bool Enabled { get; set; } = true;
public string GreetingMessage { get; set; } = "Hello from Aero Plugin!";
}
public class MyPlugin : Plugin<MyPluginConfig>
{
public override string Name => "MyPlugin";
public override string Author => "Vertex Tools";
public override System.Version Version => new System.Version(1, 0, 0);
public static MyPluginConfig Config { get; set; }
public override void OnLoad()
{
Log.Info($"${Name} Loaded! Greeting: ${Config.GreetingMessage}");
}
}Download the consolidated installer or configure your server resources manually.
Automated Standalone Installer (Windows)
Automated Standalone Installer (Linux)
Framework Core Script Assembly
Developer API Interface Library
Database, Player & Vehicle Abstractions
Circular-Buffer Event Dispatchers
Shared framework utilities
Core compilation runtime dependency
Event manager core engine dependency
Configuration parser library
Test platform runner assembly
MSBuild platform extensions
Test execution telemetry modules
Application telemetry collector
Diagnostic instrumentation source
High performance block memory library
SIMD-enabled vector math library
Pre-allocated shared memory array pools
Unsafe raw pointer operation wrapper
Run the console utility to integrate the modules instantly.
Download the Aero.Installer.exe executable, place it in your FiveM server root folder and run it. The installer will dynamically download all core DLLs, dependencies and build the `fxmanifest.lua`.
./Aero.Installer.exeAdd the following load line to your server configuration file (usually server.cfg):
ensure aero-core