Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I was wondering how adding a reference to bin\*.dll works. After selecting my dll from a differenct web app to add as a reference (to use existing classes in other code) and deploy this new web app, how does the other code get utilized? What I mean by that is does my other code get "built" into this new dll? Reason for this question is that my employer has paths different to project: on local development computer it is in folder named "local" on test server it is in folder named "test" and on live server it is in folder named "live". So I am concerned about adding reference to original code in "local" folder and then when goes to test and/or live server this new project is looking for original dll in "local" and that is not where it exists. So when this new project goes to test or live server, will new web app be looking in "local" folder to find original dll or when build new web app does it "build" the old dll up into new dll?

Thanks,

Brad
Posted

1 solution

The dll is copied to your new project and added to the web site's bin folder.
 
Share this answer
 
Comments
wizardzz 24-Jun-11 15:15pm    
Short and sweet.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900