Dmitri Nesteruk
Dmitri Nesteruk

Reputation: 23789

How can I get Visual Studio to always reload changed solutions, projects and files?

I'm using multiple machines to profile and run one solution, with data synchronization done via DropBox (brilliant, btw!). Unfortunately, changes in one machine cause all other machines' VS instances to ask me whether I want to reload which is... annoying, because the answer is always Yes.

So my question is: can I get VS to assume that the answer is always Yes?

Upvotes: 18

Views: 4272

Answers (1)

spender
spender

Reputation: 120400

Go to

Options -> Environment -> Documents

Then check the boxes:

  • "Detect when file is changed outside the environment"
  • "Auto-load changes, if saved"

Tip: You're missing a trick not using proper source control.

Upvotes: 22

Related Questions