Click here to Skip to main content
16,020,345 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I was done one project in c#.net (visual studio2005) it is a webapplication project.now it want to change in single dll file.

please give with example how to do
Posted
Updated 16-Jan-14 19:36pm
v3
Comments
Karthik_Mahalingam 17-Jan-14 1:31am    
what problem you are facing..
Prasaad SJ 17-Jan-14 5:20am    
Wont the project have your dll in the project bin folder?

Each project in a solution will be built as a dll. So, all you have to do is build the project and it will generate a dll for you. You can look at your project properties to control some of the options but each project will be a dll. Unless it is a windows forms app in which case it will be an exe.

If you want certain classes available to be shared elsewhere I would suggest making a separate project where you put your shared code (for example database access code) and then you can reuse it in each project.
 
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