asp.net mvc 3 - How do I group implementations under interfaces in Visual Studio? -
i downloaded example code github , saw bookrepository.cs class grouped beneath ibookrepository.cs interface. maybe newbie question, how that?
they might have used custom generator tool:
and here's blog post on topic.
or they might have grouped in corresponding .csproj
file:
<compile include="code\bookrepository.cs"> <dependentupon>ibookrepository.cs</dependentupon> </compile> <compile include="code\ibookrepository.cs" />
Comments
Post a Comment