PP: Orphan Assemblies List

  • Thread starter Thread starter prabhupr
  • Start date Start date
P

prabhupr

Hi Folks

In CS project, we use "Add Reference" option to make reference to other

assemblies.
At times, there a is a chance that few of them get added by mistake or
must have got added for some need and developers must have forgotten to

remove them back when not required :)


Question:
1. Is there any easy way (may be some tool) to identify if any of these

assemblies are orphan (not relevant to that project/CS file) and can be

removed
2. What are the dis-advntages of leaving them there as it is. Any
performance issues?
 
Hello (e-mail address removed),
In CS project, we use "Add Reference" option to make reference to
other assemblies.
At times, there a is a chance that few of them get added by mistake or
must have got added for some need and developers must have forgotten
to
remove them back when not required :)

Question:
1. Is there any easy way (may be some tool) to identify if any of
these
assemblies are orphan (not relevant to that project/CS file) and can
be removed

Seems not, till u add using keyword for this assembly in code. Some tools
(like ReSharper) detect unused assemblies and u can manually remove it (they
grayed)
2. What are the dis-advntages of leaving them there as it is. Any
performance issues?

You libraries will be used by-request. if u don't use them JIT won't touch
them, and there are no performance issues

---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top