Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

I noticed that when you right click a .Net EXE and pick the version tag there are a whole bunch of metadata fields.

 

There are 3 main ones: (.Net) version, description, copyright

as well as a listbox of ther items, most notably: comments, company, legal trademarks, product name

 

I was wondering how I can populate these fields. I tried looking in the most obvious places in Visual Studio 2003 but cannot find any fields.

 

Are there attributes I have to manually put into my code?

Experience is something you don't get until just after the moment you needed it
Posted

Look into AssemblyInfo.cs or AssemblyInfo.vb

[size=2][assembly: AssemblyTitle("")] 
[assembly: AssemblyDescription("")] 
[assembly: AssemblyConfiguration("")] 
[assembly: AssemblyCompany("")] 
[assembly: AssemblyProduct("")] 
[assembly: AssemblyCopyright("")] 
[assembly: AssemblyTrademark("")] 
[assembly: AssemblyCulture("")]

 

[/size]

"If someone say : "Die mortal !"... don't stay to see if he isn't." - Unknown

"Learning to program is like going out with a new girl friend. There's always something that wasn't mentioned in the documentation..." - Me

"A drunk girl is like an animal... it scream at everything like a cat and roll in the grass like a dog." - Me after seeing my girlfriend drunk and some of her drunk friend.

C# TO VB TRANSLATOR

Posted
Big thanks, I'll mark this one in my "DOH" handbook. As it was much more obvious than I expected.
Experience is something you don't get until just after the moment you needed it

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...