JetBrains Rider
 
Get JetBrains Rider
You are viewing the documentation for an earlier version of JetBrains Rider.

Open files from the command line

Last modified: 31 May 2023

Open an arbitrary file or folder in JetBrains Rider from the command line, optionally specifying where to put the caret after opening.

You can find the executable for running JetBrains Rider in the installation directory under bin. To use this executable as the command-line launcher, add it to your system PATH as described in Command-line interface.

Syntax
rider64.exe [--line <number>] [--column <number>] <path ...>
Examples

Open a project:

>
rider64.exe C:\MyProject

Open a specific file on line number 42:

>
rider64.exe --line 42 C:\MyProject\scripts\numbers.js