We were using the AssemblyDescription attribute to add notes to our assemblies (e.g. fix/branch info).

The text was visible on XP in the file Properties/Comments. However in Windows 7 this field has been hidden.

Is there a way to show this field in explorer or any other tool?

Does MS explain anywhere why this field was removed and what we should use instead? (AssemblyTitle?)

link|improve this question

Duplicate: superuser.com/questions/98777/… – Hans Passant Feb 24 '10 at 16:17
Why would that be a duplicate? – chris Feb 24 '10 at 16:46
feedback

2 Answers

up vote 6 down vote accepted

In my test assembly I have this defined in my AssemblyInfo.cs

[assembly: AssemblyDescription("this is a description")]

I can use either of these lines to retrieve that text from the resultant assembly:

via PowerShell

(dir $path).VersionInfo.Comments

via C#

System.Diagnostics.FileVersionInfo.GetVersionInfo(path).Comments
link|improve this answer
2  
This works in powershell as well: (dir <filepath>).VersionInfo | fl where <filepath> is a full path to a file. – Aardvark May 24 '11 at 19:26
1  
Nice one, Aardvark. More concise than my original PowerShell example. I'll take it a step further: (dir $path).VersionInfo.Comments – xcud May 25 '11 at 15:56
I dont understand how this answers the question...? Is there a way to show it in windows explorer or not? – Sailing Judo Feb 15 at 19:23
@SailingJudo "Is there a way to show this field in explorer or any other tool?" I was answering the latter part of the question. – xcud Feb 15 at 22:24
feedback

It's even easier now: In explorer, switch to details view, then add the column "file description".

link|improve this answer
2  
That's not the field I am looking for. AssemblyTitle goes into "File Description", AssemblyDescription goes into ??? – chris Feb 24 '10 at 16:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.