Click here to Skip to main content
15,890,043 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralFolders and Namespaces vs Multiple Assemblies Pin
#realJSOP14-Jun-16 2:30
mve#realJSOP14-Jun-16 2:30 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Duncan Edwards Jones14-Jun-16 2:40
professionalDuncan Edwards Jones14-Jun-16 2:40 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
#realJSOP14-Jun-16 2:45
mve#realJSOP14-Jun-16 2:45 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Duncan Edwards Jones14-Jun-16 2:48
professionalDuncan Edwards Jones14-Jun-16 2:48 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
TheGreatAndPowerfulOz14-Jun-16 5:45
TheGreatAndPowerfulOz14-Jun-16 5:45 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Wastedtalent14-Jun-16 2:56
professionalWastedtalent14-Jun-16 2:56 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Slacker00714-Jun-16 2:57
professionalSlacker00714-Jun-16 2:57 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
szukuro14-Jun-16 2:58
szukuro14-Jun-16 2:58 
I have the same experience as well, developers advocating multiple assemblies, mostly "just because". I haven't really heard a compelling argument. Separation of concern should be done at class level, and beyond that separate assemblies rarely (if ever) add anything to it.

On the other hand I had to deal with multiple issues because of this. One client had a solution so split up, when built it would take up 1 GB of disk space because projects referenced other projects, and every time the dlls would get copied to the output directory, some dlls duplicated 20+ times. And if this does not sound bad enough, it wasn't some huge back-end transactional processing whatever system. It was a web site with around 25 pages (I wish I was exaggerating).
Second issue I've noticed that it's a nightmare for dealing with circular references, because there will always be at least 1 instance of this happening, and the more dlls the more likely. One company solved this by making every dll a NuGet package as well. It was a PITA to build, as you had to build project A, publish it to the feed, update for project B and then build that. But hey, at least no one had to do care where to put what...

Obviously not saying multiple assemblies are a bad thing per se, but in my experience they are used lot more then they should be.
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Nicholas Marty14-Jun-16 3:07
professionalNicholas Marty14-Jun-16 3:07 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
szukuro14-Jun-16 3:17
szukuro14-Jun-16 3:17 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
johannesnestler14-Jun-16 3:03
johannesnestler14-Jun-16 3:03 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
#realJSOP14-Jun-16 3:18
mve#realJSOP14-Jun-16 3:18 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Slacker00714-Jun-16 3:26
professionalSlacker00714-Jun-16 3:26 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
#realJSOP14-Jun-16 3:32
mve#realJSOP14-Jun-16 3:32 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Slacker00714-Jun-16 4:34
professionalSlacker00714-Jun-16 4:34 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
#realJSOP14-Jun-16 5:11
mve#realJSOP14-Jun-16 5:11 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
TheGreatAndPowerfulOz14-Jun-16 5:50
TheGreatAndPowerfulOz14-Jun-16 5:50 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Nicholas Marty14-Jun-16 3:04
professionalNicholas Marty14-Jun-16 3:04 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Nagy Vilmos14-Jun-16 3:15
professionalNagy Vilmos14-Jun-16 3:15 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Kornfeld Eliyahu Peter14-Jun-16 3:21
professionalKornfeld Eliyahu Peter14-Jun-16 3:21 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Slacker00714-Jun-16 3:26
professionalSlacker00714-Jun-16 3:26 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
#realJSOP14-Jun-16 3:27
mve#realJSOP14-Jun-16 3:27 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Kornfeld Eliyahu Peter14-Jun-16 3:30
professionalKornfeld Eliyahu Peter14-Jun-16 3:30 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
#realJSOP14-Jun-16 3:38
mve#realJSOP14-Jun-16 3:38 
GeneralRe: Folders and Namespaces vs Multiple Assemblies Pin
Marc Clifton14-Jun-16 3:36
mvaMarc Clifton14-Jun-16 3:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.