Where to find DotSettings files associated with a settings layer?
JetBrains Rider has two types of settings: IntelliJ related, which are out of the scope of this article, and ReSharper related, which are stored in three default settings layers: personal for a solution, team-shared for a solution, and this computer. The settings which are stored in the layers are marked with a layer icon.
Where to find them?
- Solution Team Shared
{Solution Name}.sln.DotSettings file next to the .sln file
- Solution Personal
{Solution Name}.sln.DotSettings.user file next to the .sln file
- This Computer
Rider2020.1 or newer versions:
Windows: %APPDATA%\Roaming\JetBrains\RiderXXXX.X\resharper-host\GlobalSettingsStorage.DotSettings
Mac OS: ~/Library/Application Support/JetBrains/RiderXXXX.X/config/resharper-host/GlobalSettingsStorage.DotSettings
Linux: ~/.config/JetBrains/RiderXXXX.X/config/resharper-host/GlobalSettingsStorage.DotSettings In
Rider2019.3.x or older versions:
Windows: C:Users\%UserName%\.RiderXXXX.X\config\resharper-host\GlobalSettingsStorage.DotSettings
Mac OS: ~/Library/Preferences/.RiderXXXX.X/config/resharper-host/GlobalSettingsStorage.DotSettings
Linux: ~/.RiderXXXX.X/config/resharper-host/GlobalSettingsStorage.DotSettings
Please sign in to leave a comment.