Creating .DLL

Hello

Anyone know how to create a .DLL using Visual studio2005 I am trying to build the project class but when i see bin folder no dll exists.

Thanks

 

abhilash



Answer this question

Creating .DLL

  • Syed Arshad

    You need to set your project as a Class Library to generate a DLL.

  • Irshad

    Stupid question I know... but are you sure that your build is succeeding If it is failing, the only DLL you’ll find will be the previous version (if one existed).

  • mike g777

    If you're certain that your project is building correctly, here's how you can check where the DLL is going - In Solution Explorer, find your project, right-click and click 'Properties'. In the window that appears, click the 'Build' tab and find the 'Output path' textbox.


  • EHerb

    Hi,

    Also, make sure your project has build enabled: Right-click your solution in solution explorer and choose "Configuration manager...". Verify that the checkbox for your project is checked.


  • js40

    Is your project type a class library Unless you change default settings, the .dll will be in the bin\debug folder.

    Mike


  • Creating .DLL