JetBrains Rider 2024.1 Help

Before you start

This Getting Started video will take you through the initial steps, getting the app installed once you’ve registered, and setting Rider as the default source code editor for Unreal:

Software requirements

  • Unreal Engine 4.20+ (Unreal Engine 4.25.4+ to work with .uproject directly)

  • Microsoft Visual Studio compiler for Unreal Engine projects. The compiler is installed with Visual Studio, but you can also install it separately from the Build Tools for Visual Studio. Note that using MS Build Tools for commercial products requires a valid Visual Studio license.

  • Unreal Engine 4.26+

  • Xcode command line developer tools (to install, use the xcode-select --install command)

  • For the C# projects: Mono

  • Unreal Engine 4.26.2+

  • For the C# projects: Mono

Set up integration with Unreal Editor

Starting with 4.25 on Windows and 4.26.2 on macOS, Unreal Editor has built-in support for JetBrains Rider with Unreal Engine features. If you’re using an earlier version of Unreal Engine, you need to install the RiderSourceCodeAccess plugin manually. For more information, refer to the plugin page on GitHub.

Once the plugin is installed into the engine and enabled, Unreal Editor will list JetBrains Rider as a supported source code editor (Editor Preferences | General | Source Code). You can select a specific version, or just select Rider to always use the latest installed version.

Unreal Editor: Editor Preferences | General | Source Code

Install plugins

The first time you open an Unreal Engine project, you'll see a notification that the RiderLink plugin is missing. This plugin is very useful as it enables advanced integration between JetBrains Rider and Unreal Editor with features such as opening a blueprint in Unreal Editor when JetBrains Rider finds usages of code inside this blueprint.

Clicking the corresponding links will install the plugin, either to the engine or locally to the project. If you skip this pop-up message, you can install the plugin later on the Languages & Frameworks | Unreal Engine page of Rider settings. And if you decide to change the installation location, use Force Install RiderLink in Engine/Force Install RiderLink in Game actions, which you can find using Find Action Ctrl+Shift+A.

Another useful plugin is EzArgs providing functionality for working with command-line arguments.

Open an Unreal Engine project

You can work with the .uproject directly in JetBrains Rider, without generating a Visual Studio solution, Xcode project files, or any extra project models like Makefiles. On Windows, you can alternatively open your .sln files.

To open a standalone engine project, you can use UE4Games.uprojectdirs or Default.uprojecdirs, similar to .uproject.

If the project is opened via .uproject file, you can access the .Build.cs, .uproject, and .uplugin files using one of the following options:

  • Right-click the corresponding high-level item in the Solution Explorer and choose Edit from the context menu. For example, to open the Build.cs file, right-click the game project and choose Edit | Edit Game.Build.cs.

  • Press Ctrl+Shift+N or choose Navigate | Go To File.

Edit Build.cs
Last modified: 11 February 2024