I have a puzzle on my head.
I am currently collecting downloads of “code snippets” into reusable libraries, which I obviously intend to use in multiple applications.
I'm having trouble choosing the right namespace and assembly.
Basically, I have currently received JasonSummers.Validation as an example for my validation library, since I do not have a “company” and there is no specific project to which the code applies.
However, later, when I come to use the specified namespace in the client project, I do not think it is really appropriate for my name to refer to code that will probably belong to the IPR for.
I would just use “Validation” as the namespace (after all, StructureMap is StructureMap, not JeremyMiller.StructureMap), but this can be confusing for future developers, as “Check” is used in the set of “System” namespaces provided by .net
All comments were greatly appreciated.
source
share