-
Notifications
You must be signed in to change notification settings - Fork 64
Docu
Henrik edited this page Aug 21, 2014
·
1 revision
Run jagregory's docu console application to create csharp project documentation.
desc "Generate project documentation"
docu :doc => [:build] do |cmd|
cmd.command = "path/to/docu"
cmd.assemblies = FileList["wildard/path/to/assemblies"]
cmd.xml_files = FileList["wildcard/path/to/xml/files"]
end
The location of the docu console application.
command = "path/to/docu"
The assemblies to document.
assemblies = FileList["wildard/path/to/assemblies"]
Some sort of XML files to process (I can't find documentation on this option).
xml_files = FileList["wildard/path/to/xml/files"]
(none)