How to fill INPI data in a .NET project

0

My question is somewhat conceptual.

My company registered the software at INPI and received the protocol data, etc.

How do I populate this data on my system?

I noticed that in the AssemblyInfo.cs file I have fields that allow me to fill in this. Doubt is how to fill in.

[assembly: AssemblyTitle("CBIP.Business.UI.Web")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("CBIP.Business.UI.Web")]
[assembly: AssemblyCopyright("Copyright ©  2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

What is the correct way to fill in this information?

    
asked by anonymous 02.06.2017 / 00:17

1 answer

0

There is no correct way because these attributes are purely descriptive and you can by any way you want, one or the other has some semantics that if followed can be used by some specific tool.

Some people will put it in Copyright , another in Trademark , and some will create their own attribute to place this.

But I'm sorry to tell you that it will be misleading information almost instantly, because even though the assembly file is based on sources you've registered, it will soon be gone. Once you start fiddling with the fonts after registration, either you re-register or it is no longer the registered object.

Of course it has some advantage, but I've seen who registered it to be stolen and can not do anything because the stolen source was no longer registered, with few changes the person escapes having done something wrong from a legal point of view. / p>     

02.06.2017 / 00:35