Marius Schulz
Marius Schulz
Front End Engineer

Keep Your Visual Studio and ReSharper Settings In Sync Between Multiple Development PCs

Today, I finally got rid of a pain point that has been annoying me for a while: keeping in sync the IDE settings on my two development machines. Since I use a desktop when I'm at home and a laptop when I'm at work, I now let Dropbox do the heavy lifting of synchronizing my settings files between multiple PCs.

Here's a quick run-down on how to set up Visual Studio and ReSharper to store their settings within Dropbox.

#Creating a Dropbox Folder

Anywhere within your Dropbox, create a new folder (and remember where you put it). You'll store the settings that you want to synchronize in that folder in just a minute.

#Configuring the Visual Studio Settings

First, you'll have to export your current Visual Studio settings:

Visual Studio Export Wizard

  1. Navigate to Tools | Import and Export Settings...
  2. Choose Export selected environment settings and click Next.
  3. Select the settings you want to synchronize and click Next again.
  4. Give your settings file an apt name and select your Dropbox directory.
  5. Click Finish, then Close.

Now you'll have to point Visual Studio to the settings file you just exported:

Visual Studio Select Settings File

  1. Navigate to Tools | Options... | Environment | Import and Export Settings.
  2. Click the Browse... button and select the .vssettings file from your Dropbox.
  3. Click OK.

The next time you start Visual Studio, it'll load its settings from within your Dropbox. Note that Visual Studio loads the settings file on startup and writes back to it when being closed.

#Setting Up a ReSharper Settings File

Hadi Hariri from JetBrains has written a detailed blog post that walks you through configuring ReSharper to load settings from a file within Dropbox, so I won't repeat what he wrote.

That's it! You now have multiple development machines sharing the same IDE settings.