Referencing another C# assembly

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

All,

I have created one assembly say project A using c# that I would like to
reference from another assembly also written in c# called project B. Now in
project B I select References click the browse button and browse to project A
now do I select the project A assembly in the bin\debug or obj\debug folder?

What is the difference?

Thanks
Msuk
 
The bin is used for the project output after compilation whilst the obj
folder is the temporary project output folder. Assuming that you only do
this for development purposes I don't think that it really matters which on
you use.

Gabriel Lozano-Morán
 
Back
Top