I have been given some criteria for a project. It MUST be constructed in a particular way. I know this isn't a great question but my C# is really rusty. The specification states:
Application namespaces should follow (but not be limited to) the below [actual names changed]:
AnExample.Sample.Foo
AnExample.Sample.Foo.UnitTests
AnExample.Sample.Bar
AnExample.Sample.Bar.UnitTests
and that "each namespace should exist within its own assembly"
.
I'm a little confused- what is being asked for and how to achieve it? For each namespace to exist in it's "own assembly" does it have to be a separate project and referenced or is it a folder structure?