travisowens Posted July 29, 2004 Posted July 29, 2004 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? Quote Experience is something you don't get until just after the moment you needed it
Arch4ngel Posted July 29, 2004 Posted July 29, 2004 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] Quote "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
travisowens Posted July 29, 2004 Author Posted July 29, 2004 Big thanks, I'll mark this one in my "DOH" handbook. As it was much more obvious than I expected. Quote Experience is something you don't get until just after the moment you needed it
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.