NDoc for .NET v.2.0
-
I wasn't quite sure which forum this should go under, so I put it here. I, like many others I'm sure, use NDoc to create documentation for my code. This is one great product, but it has one slight drawback. It doesn't document v.2.0 code. The team is working on it. In the meanwhile I use this little workaround to make NDoc document my V.2.0 projects: Create a file named NDocGui.exe.config and place it in the NDoc folder (e.g. C:\Program Files\NDoc 1.3\bin\net\1.1). In this config file you just type: and now NDoc will process the v.2.0 projects. (Supported Runtime Version number should of course be changed to reflect the actual version on your system.) There is even more good news for VB.Net developers. XML documentation is now supported for v.2.0 projects. Just use ''' (instead of /// for C# projects). This also works with NDoc. jjrdk
-
I wasn't quite sure which forum this should go under, so I put it here. I, like many others I'm sure, use NDoc to create documentation for my code. This is one great product, but it has one slight drawback. It doesn't document v.2.0 code. The team is working on it. In the meanwhile I use this little workaround to make NDoc document my V.2.0 projects: Create a file named NDocGui.exe.config and place it in the NDoc folder (e.g. C:\Program Files\NDoc 1.3\bin\net\1.1). In this config file you just type: and now NDoc will process the v.2.0 projects. (Supported Runtime Version number should of course be changed to reflect the actual version on your system.) There is even more good news for VB.Net developers. XML documentation is now supported for v.2.0 projects. Just use ''' (instead of /// for C# projects). This also works with NDoc. jjrdk
The XML didn't show up because the browser treated it like HTML, and since it wasn't the browser's renderer just ignored it. You have to remember to either click the "Ignore HTML tags" check box, or manually put in the < and > escape sequences manually.
<configuration>
<startup>
<supportedRuntime version="v2.0.50215" />
</startup>
</configuration>
My: Blog | Photos "Man who stand on hill with mouth open will wait long time for roast duck to drop in." -- Confucious
-
The XML didn't show up because the browser treated it like HTML, and since it wasn't the browser's renderer just ignored it. You have to remember to either click the "Ignore HTML tags" check box, or manually put in the < and > escape sequences manually.
<configuration>
<startup>
<supportedRuntime version="v2.0.50215" />
</startup>
</configuration>
My: Blog | Photos "Man who stand on hill with mouth open will wait long time for roast duck to drop in." -- Confucious