tags:

views:

21

answers:

0

We're using ILMerge to combine a (sub...i.e. not the startup project)project assembly and it's dependent assemblies into one assembly. The sub project is named like so...MainProjectNameSubProjectName so that when it compiles it creates an assembly named MainProjectNameSubProjectName.dll.

Now we run ILMerge to combine all the assemblies and at present, we're naming the output assembly MainProjectNameSubProjectNameAll -- note the All suffix...

So my question is...what do you name the output of ILMerge, is there an accepted convention to indicate that this is a merged assembly?

We realize we could change the assembly name of MainProjectNameSubProjectName to something else like...MainProjectNameSubProjectNameUnmerged and maybe thats the answer so that our ILMerge output can be MainProjectNameSubProjectName.dll, but just wanted to get the SOers take on this.