Open
Description
I'm using CommandLine version 1.9.71.2
If i specify an AssemblyTitleAttribute
with a dotted name (and I version my tool 1.10.1.* through the AssemblyVersionAttribute) in the project's AssemblyInfo.cs file, e.g.
[assembly: AssemblyTitle("my.favorite.tool")]
the Copyright and Heading properties on HelpText when using the AutoBuild show
my.favorite 1.10.1.27342
Changing the assembly title to
[assembly: AssemblyTitle("my.great.fantastic.favorite.tool")]
changes Copyright and Heading properties to
my.great.fantastic.favorite 1.10.1.27342
It always leaves out the word after the last dot.
When I leave out the AssemblyTitleAttribute
all together, the HelpText falls back to the text specified in the AssemblyProductAttribute
and that seems to be working fine.