search
Japanese Chinese Nederlands Espanol Italiano Deutsch Francais Twitter Rss Feeds
MicrosoftArticlesForumsFAQs
C# .NET
VB.NET
Visual Studio .NET
ADO.NET
Xml / Xslt
VB 6.0
.NET CF
GDI+
LINQ
Deployment
Security
FoxPro
Silverlight / WPF
Entity Framework
RIA Services

Web ProgrammingArticlesForumsFAQs
JavaScript
ASP
ASP.NET
Web Services

Non-MicrosoftArticlesForumsFAQs
NHibernate
Perl
PHP
Ruby
Java
Linux / Unix
Apple
Open Source

DatabasesArticlesForumsFAQs
SQL Server
Access
Oracle
MySQL
Other Databases

OfficeArticlesForumsFAQs
Excel
Word
Powerpoint
Outlook
Publisher
Money

Operating SystemsArticlesForumsFAQs
Windows 7
Windows Server
Windows Vista
Windows XP
Windows Update
MAC
Linux / UNIX

Server PlatformsArticlesForumsFAQs
BizTalk
Site Server
Exhange Server
IIS

Graphic DesignArticlesForumsFAQs
Macromedia Flash
Adobe PhotoShop
Expression Blend
Expression Design
Expression Web

OtherArticlesForumsFAQs
Subversion / CVS
Ask Dr. Dotnetsky
Active Directory
Networking
Uninstall Virus
Job Openings
Product Reviews
Search Engines
Resumes

 

View Other Visual Studio .NET Posts   Ask New Question 
creating dll in visual studio 2005
GAUTAM SHAH posted at Saturday, June 03, 2006 10:03 AM
hi,

Can any one tell how to create a .dll of the project in visual studio 2005. Also i wanted to know how to create a dll of the user control or custom control made in VS 2005.

Please answer as soon as possible.

Regards

 
When you build the project
Peter Bromberg replied at Saturday, June 03, 2006 11:36 AM
a DLL assembly is automatically created. Is this a trick question, or you just weren't aware how it all works?

if you create a project with a single usercontrol, that's the dll that will be created.
You can put that in the /bin folder of any project and set a reference to it to use the control. If it is a web project, you need to have the .ASCX file present to use it.
 
If you are looking for the dll and can not
erik little replied at Saturday, June 03, 2006 11:45 AM
find it you can use this tool to create a .dll for your WEB prject.

http://msdn.microsoft.com/asp.net/reference/infrastructure/wdp/default.aspx
 
When i build my project
GAUTAM SHAH replied at Saturday, June 03, 2006 3:04 PM
hi,

When i build my project in the bin/debug folder there is an .exe file which as per by information is the assembly for the project.Correct me if i am wrong and please tell me where is dll assembly created(give the path).

Regards
 
If you see an EXE file in the bin
Peter Bromberg replied at Saturday, June 03, 2006 5:01 PM
folder, then your project is not a Class Library project -- it is either a Windows Forms app, or a Console app, or a Windows Service.

Change the project output type first.
 
i want to make a dll for using in web application
morteza bagherpour replied to GAUTAM SHAH at Wednesday, March 04, 2009 3:05 AM
end of post