I have an ASP.NET project which refers some web services. When the project is published, the bin folder is created and it contains app_Webrefernces.dll. Now I need to add copyright information to this dll. How can I do that?
Asked
Active
Viewed 2,712 times
0
-
Why not do this whilst building a DLL? Just put info in AssemblyInfo.cs file – sll Nov 17 '11 at 11:34
-
Add copyright info in AssemblyInfo.cs like this [assembly: AssemblyCopyright("Copyright © Company name. 2011")] – Prasanth Nov 17 '11 at 11:40
2 Answers
4
You can set the Metadata for your Assembly (DLL) like Title, Description, Copyright and more using
You find this in Visual Studio
To access this dialog box, select a project node in Solution Explorer, then on the
Project menu, click Properties. When the Project Designer appears, click the Application tab. On the Application page, click the Assembly Information button.
or in the
AssemblyInfo.cs file
{YourProject} / {Properties} / AssemblyInfo.cs
hope this helps

dknaack
- 60,192
- 27
- 155
- 202
0
Inside visual studio, go to solution explorer, expand your project's properties, overthere you an fill in AssemblyInfo.cs with basic copyright information for our dll.
This will be visible in compiled file on right clicking it and looking to the properties of the file.

Peter
- 2,043
- 1
- 21
- 45