NuGet
On this page, you can configure Rider's NuGet package manager.
Search
Include prerelease | If this option is enabled, JetBrains Rider will search and install pre-release versions of packages. That is when the package version includes a suffix such as |
Include unlisted | If this option is enabled, Rider will search and install versions of packages that are unlisted on the server (for example, at NuGet website). You may want to use this option to see outdated versions of packages. |
Search in dotnetfeed*.blob feeds | NuGet feeds on blob.core.windows.net are hosted with Sleet, which does not support query parameters and sends the entire index when queried. If you have such feed among your custom NuGet feeds, there might be memory issues because Rider will get too much data when trying to display packages available in that feed. This option lets you disable querying of such feeds, but it does not affect updating and restoring of packages that are already installed from those feeds. This option is disabled by default to avoid the memory issues mentioned above. You might want to enable this option if you have to use feeds at blob.core.windows.net (they will start with https://dotnetfeed*.blob), but as soon as you find and install the required packages, we recommend disabling this option. |
Install and update
Preferences in this section work exactly the same as in Visual Studio package manager:
Dependency behavior | This option configures how NuGet decides which versions of dependent packages to install:
|
File conflict action | This option specifies how NuGet should handle packages that already exist in the project or local machine. It has the following settings:
|
Uninstall
Preferences in this section work exactly the same as in Visual Studio package manager:
Remove dependencies | When selected, removes any dependent packages if they're not referenced elsewhere in the project. |
Force uninstall even if there are dependencies on it | When selected, uninstalls a package even if it's still being referenced in the project. This option is typically used in combination with Remove dependencies to remove a package and whatever dependencies it installed. Using this option may, however, lead to broken references in the project. In such a case, you might need to reinstall those other packages. |
Restore
Allow Rider to restore missing packages | This option defines global NuGet package restore policy. You may want to disable NuGet package restore if you have poor internet connection, or if you work with a large solution with complex dependencies, where restoring packages with default settings can actually break compilation. |
Automatically restore missing packages when necessary | This option affects different scenarios, where Rider automatically restores NuGet packages — for example when opening or building projects. By the way, automatic NuGet restore before building can be toggled on the settings page. |
.NET Core restore engine | By default, JetBrains Rider uses its own implementation of the .NET Core restore engine. You can enable the MSBuild engine instead, which you may need if you use Paket dependency manager in your projects. Even more, this option will be automatically set to MSBuild if JetBrains Rider detects Paket configs in your solution. Note that the MSBuild support is experimental, and credential provider will not work with this option, That is, if you use private NuGet feeds and configured your credentials on the Sources tab of the NuGet window, MSBuild engine will not be able to use these credentials. |
Package management
Default package management format | Use this selector to choose which NuGet package management format will be used:
By default, JetBrains Rider tries to automatically detect, which format should be used based on the project type or other projects in the solution. |
Credential providers
Use credential providers | This selector lets you choose the authentication method for private NuGet feeds. The default Rider integrated providers support credentials in the form of a username/password combination as well as for MyGet and Visual Studio Team Services (VSTS). For private feeds that use plugin-based authentication method, choose NuGet/.NET CLI plugins or NuGet/.NET CLI plugins, then Rider integrated. |