Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
let us consider a example in which


1) i have complied the source file in c#.net and took that dll and place it in to bin directory of already compiled other project

2) is it possible to run that file by changing in web configuration file

if yes give some ideas or else give some solutions to it





waiting for your responses
Posted
Comments
Sandeep Mewara 28-Apr-12 4:48am    
changing web.config file of the dll and then use it?
gowthammanju 2-May-12 3:06am    
just send me coding to include that dll file for iis version7
Sandeep Mewara 2-May-12 7:03am    
What else should I send? I thought you were here for help! :doh:


1 solution

If it is a DLL then you have to add the reference to it in the project you are trying to use it.

The better idea would be to have the project in the same solution which is going to use it. then add the project reference and then the dll will be used and copied automatically into the target directory. copying it manually is error prone and will be a maintenance nightmare if both the projects are under development.
 
Share this answer
 

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