Page 1 of 1

Files vs Assemblies entries

Posted: Wed Mar 30, 2005 5:59 pm
by EricB
I am trying to determine the difference between the "Files" entries and the "Assemblies" entries, and when to use which one.

If I put my application executable and associated 3rd party assemblies in the "Files", all works fine, but I am thinking that I should be using the "Assemblies" for the 3rd party assemblies instead. I am installing them to $TARGETDIR$ rather than the GAC.

Which is the "correct" or "best" way?

Thanks,

Eric

Posted: Thu Mar 31, 2005 4:16 am
by sinan
If you are not installing into the GAC, and if you do not intend to register the assemblies with the system (for use with other apps), using the Files view is fine. The Assemblies view is for use when you want to register the assemblies with the system, either inside the GAC or outside it.

Posted: Thu Mar 31, 2005 9:29 am
by EricB
Thanks,

Eric