Menu

#385 Bug: cuts russian letters from Namespace tags + suggestion

v1.3
open
nobody
5
2005-01-24
2005-01-24
No

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 &#1057;onsole

Suggestion
It's possible to add this feature in next release?

Regards,
Dmitri

Discussion


Log in to post a comment.