JetBrains Rider 2017.3 Help

Creating and Opening Projects and Solutions

Creating projects and solutions

You can create a new project in a new solution using File | New... or add a new project to the existing solution by right-clicking the solution or solution folder node in the Solution Explorer, and choosing New | Project.

When creating a new solution or project, Rider gives you a number of pre-installed templates, which a grouped by framework. There are templates to create an empty project, standard .NET class libraries and applications, as well as test projects. It will also create .NET Core projects, as console applications, testing and class libraries.

In every template, you can specify a number of options:

  • Solution/project name and folder
  • An option to create a Git or Mercurial repository
  • Language to use — many templates support C#, VB.NET and/or F#
  • Target framework for the project. Note that for a framework to be available from this list, it has to be installed on our system.
  • For Unity and Xamarin, several other options can be provided as well, for example the path to UnityEngine.dll, the target platform (Android or iOS), the type of app (blank, Android Wear, ...) Note that these options, too, depend on available frameworks on our system, such as the Mono/Android versions installed.

When you specify project options, just click Create. Once a project has been created, files can be added or removed by right-clicking on the project node in the Solution Explorer.

Installing custom project templates

Rider supports the template system used by the .NET tooling (dotnet new), which allows you to use project templates from the dotnet templates gallery or create your own templates.

There are two ways to install custom project templates.

  • You can run dotnet new --install [template package] in the command line, where [template package] is the template id from the dotnet templates gallery.
  • In the New Project/ New Solution dialog, click More Templates on the left, then click Install Template, and then choose a .nupkg file with the desired project template.
    When the template installs, click Reload.

Opening existing projects and solutions

To open an existing project or solution, choose the corresponding item on the welcome screen. If Rider is already running, press Ctrl+Shift+O or choose File | Open | Solution or Project..., or alternatively, choose one of the resent solutions under File | Open.
Rider will generate an .sln file and an .xproj file if necessary.

Rider also allows opening a project from source control. It can, for example, log in to GitHub, and clone a repo to the local file system. Once done, it will prompt to open the folder.

When opening a .NET Core project, Rider will automatically restore all packages. Rider will also detect the list of target frameworks from .sproj, and display them in a chooser in the status bar. Selecting the current target framework sets the context for the editor — what compiler defines are active, and what packages and assemblies are referenced.

Rider allows opening several solutions simultaneously in different windows. By default, each time you open a solution while another one is opened, it prompts you to choose whether to open the project in the same window or in a new window. If necessary, you can set the default way of opening projects on the Appearance & Behavior | System Settings page of JetBrains Rider settings (Ctrl+Alt+S).

Managing recent solutions

Each time you open a new solution, Rider saves it in its history and lets you quickly reopen it from the File | Open menu. If you want to remove a solution from your history, choose File | Open | Manage Projects... in the menu, then click x next to that solution or press Delete when it is selected.

Rider. removing solution from the recent history
Last modified: 19 April 2018

See Also