BUG (MS 1.1/MSDN/Console)
At work with console NDOC cuts out Russian letters from
Namespace
<namespaces>
< namespace name = "Test" > Test Test </namespace>
</namespaces>
I receive only
Test
To solve this problem for me, I has added in Console.cs
public static int Main (string [] args)
{
try
{
WriteLogoBanner
();
project = new
Project ();
documenter =
project. GetDocumenter ("MSDN";
/// my New code Bigin
+++++++++++++++++++++++++++++++++++++++ +
if ((args. Length == 1) and args
[0] .ToLower () .EndsWith (".ndoc"))
{
project. Read (args [0] .ToString ());
documenter. DocBuildingStep + = new
DocBuildingEventHandler (DocBuildingStepHandler);
documenter. Build (project);
return 0;
}
/// my New code End
+++++++++++++++++++++++++++++++++++++++ +
It's very well works for me and it is very convenient, as
one file for GUI and Сonsole
Suggestion
It's possible to add this feature in next release?
Regards,
Dmitri