Click here to Skip to main content
15,906,106 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys..
I have a an asp.net project which uses my own webservices. Now my client asked me to add their copyright information within the webservices and inside all of the C# code.
And they needs to show the copyright information in all of the generated DLLs when publishing the project. So how can I do that?
Somebody please help me...
Posted

1 solution

.NET Assembly attributes are Title, Description, Company, Product, Copyright, Trademark, Assembly Version, File Version, GUID

In AssemblyInfo.cs file, you can set Copyright information using .NET attributes as:
C#
// Set copyright of the assembly.
[assembly:AssemblyCopyrightAttribute ("ABC Corporation")]
 
Share this answer
 
Comments
Binu Varghese K 16-Nov-11 23:47pm    
Thank you for your reply... But i need to incorporate it with my webserice. Actually it dont have assemblyinfo.cs file . If i create an assemblyinfo.cs file and add this copyright info within that, how can i see that copyright info for that webservice?

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