VB2005 Tips and Tricks – part9

XML Comments

To use NDoc v. 1.3 with .NET Framework 2.0 do the following:

  1. Copy the bin\net\1.1 and rename it to 2.0
  2. In 2.0 folder, create a NDocGui.exe.config with:

<configuration>
   <startup>
      <supportedRuntime version=”v2.0.50727″ />
   </startup>
</configuration>

That’s all!. If you want to run the NDocConsole.exe just create another NDocConsole.exe.config with the same txt and you are done.

If you want to use the full power of XML Comments in VB, check Recommended XML Tags for Documentation Comments

Comments are closed.