Lakshmi
Lakshmi

Reputation: 179

visual-studio Project settings

While updating project settings for different sub-projects under a project, i'm updating settings for each sub-project one after the other. Instead of doing so, can i update the common settings once for all the sub-projects?

Upvotes: 1

Views: 513

Answers (1)

Jason Williams
Jason Williams

Reputation: 57932

In the Visual Studio UI, generally the answer is no.

But in most cases you can make a change in a single project then diff the .csproj file (which is just XML) against the previous version to see what the IDE changed (in most cases, only a single element or attribute will change), and then use a global file replace (or similar) to propagate that change quickly through many projects.

Upvotes: 1

Related Questions