Can Resharper learn to recognize related files when refactoring?

Is it possible to make resharper linked files when refactoring?

Consider customizing a solution with the following projects:

Backend Services //Depends on 'Backend' and 'Services.Shared' Services.Shared Services.Shared.Silverlight //This project links all sourcecode in 'Services.Shared' Frontend //Depends on 'Services.Shared' through 'Services.Shared.Silverlight' 

When renaming a class in a Services.Shared project, Resharper ensures that everything is fine and good in Services and updates any links, but Frontend, which is “indirectly” dependent on Services.Shared, is not updated along with refactoring.

I know that there are problems renaming the file during refactoring, as Resharper renames the file to “Services.Shared”, which makes the link to “Services.Shared.Silverlight” invalid.

But they wonder what people, if anything, are doing to make refactoring less painful in this situation?

+4
source share
1 answer

I would say if this does not work now, then the supervision that has been registered: http://bit.ly/ACucSI . It looks like: Visual Studio related file directory structure

+3
source

All Articles