JetBrains Rider 2018.1 Help

Opening Files from Command Line

You can open an arbitrary file, folder, or project for editing in JetBrains Rider from the command line, optionally specifying where the caret should rest after opening the file.

  • In the command line, run the following command:
    <JetBrains Rider> [--line <number>] path

    Alternatively, you can use the following syntax:

    <JetBrains Rider> path:<number>

The command options are as follows:

Option Description
<JetBrains Rider>

The platform-specific JetBrains Rider launcher.

On macOS and Linux, it is recommended to use the command-line launcher created during the JetBrains Rider installation, or create one manually by selecting Tools | Create Command-line Launcher on the JetBrains Rider main menu. Refer to Besides working from within JetBrains Rider, you can perform the following actions from the command line: for details.

On Windows, it is recommended to add the path to the JetBrains Rider executable to the Path environment variable.

path

The path to the file or the folder to be opened.

  • If the file or folder belongs to an existing project, this project will be opened.
  • If the file does not belong to any project, a temporary project for this file will be created automatically.
  • If the folder does not belong to any project, a new project will be created inside this folder.
--line <number> (optional) The line number, on which the caret should rest after opening the file.

Examples

Syntax
rider64.exe --line <number> path
Alternative syntax
rider64.exe path:<number>
Examples
rider64.exe --line 3 C:\MyProject\scripts\numbers.js rider64.exe C:\MyProject\scripts\numbers.js:3
Syntax
rider --line <number> path
Alternative syntax
rider path:<number>
Example
rider --line 3 ~/MyProject/scripts/numbers.js rider ~/MyProject/scripts/numbers.js:3
Last modified: 20 August 2018