Suppose the root project has My.Root.Project
namespace. I wonder what namespace should be assigned to an area classes? Possible alternatives:
My.Root.Project.Areas.Area1
My.Root.Project.Area1
Esthetically, I prefer second one.
However, since I use a single-project areas, all the classes created within Areas\Area1\...
folder are given long namespace My.Root.Project.Areas.Area1
by default. There is too much stupid work in getting rid of the Areas
part in every created class by hands.
How to prevent Areas
from being included into namespace?