user593358
user593358

Reputation:

How to safely rename a class in Common project (shared by multiple solutions)

I have a "Common" project shared by multiple solutions.

If I rename a class in the Common project, Visual Studio will refactor all code that uses that class, but on for the opened solution. Is it possible to force Visual Studio to refactor all solutions that use Common project?

Upvotes: 1

Views: 357

Answers (1)

Thought
Thought

Reputation: 700

You would need to have a separate solution that included all projects that referenced it.

Upvotes: 1

Related Questions