How about reference type?

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

It will show the reference page when I right click a web project and select
it's property page.
There are some reference types: BIN, GAC
What is the difference between these two types?
 
BIN references are where you are referencing the binary directly; the
dll typically gets copied into the ~/bin folder of the app. A GAC
reference obtains the dll from the Global Assembly Cache; the dll is not
required separately in the application, but the dll must have been
previously installed into the GAC by an install step.

It is much easier to deploy BIN references, since this is just a file
copy (simply use robocopy etc). GAC references are useful for things
that don't change as much - core .NET dlls, for example, often (but not
always) get installed into the GAC. For web sites, I try to avoid the
GAC... it makes deployment unnecessarily complex...

Marc
 

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