sevoku / doxygen-vb-filter

Convert Classic VB (VB6) and VB.NET code syntax to a C#-like syntax, so it can be read and understood by Doxygen.
22 stars 10 forks source link

Fail sometimes? - VS2005 File. #1

Closed ghost closed 9 years ago

ghost commented 9 years ago

Hi,

I run the sample and works perfect, when I add a new file into VBNET folder's sample, generate all but crash and html/index.html show only the title, but not the classes or packages, some time just the files and don't get the comments and source files.

Is ready for vs 2005 and further?

Thanks a lot.

BTW Great Job

sevoku commented 9 years ago

I don't think that this has something to do with the VS version, since it is still the same language and the filter should be applied only on the *.vb files. Can you gist some example which fails?

ghost commented 9 years ago

Ok, now is working.

I follow the Environment setup steps and put the awk in the _INPUTFILTER and Dioxygen only creates a "template" of html files.

INPUT_FILTER = "\path\to\gawk.exe -f \path\to\vbfilter.awk" -> I replace the path for my installation path

I remove the _INPUTFILTER and put the Advanced Installation suggested line:

INPUT_FILTER = vbfilter.bat INPUT_FILTER = "cd .. & vbfilter.bat" -> on my case

And works fine.

Thanks a lot.