C# FAQ: How do I make a CSharp DLL?
Microsoft .NET Framework, ASP.NET, Visual C# (CSharp, C Sharp, C-Sharp) Developer Training, Visual Studio
| CSharp-Online.NET:FAQs |
| edit |
[edit]
How do I make a C# DLL?
Use the /target:library compiler option.
In Visual Studio,
- open the Project File's property page;
- open CommonProperties -> General -> Output Type;
- change the output type to class library;
- build the application to create a .dll file.
Set the path where the .dll file is to be stored by setting Configuration Properties -> Build -> Output Path.
[edit]