Project Description
A collection of small command line developer tools.
The tool does a recursive search from the specified or current directory.
Optional arguments
Note
Arguments
A collection of small command line developer tools.
Version Updater
Updates version numbers and copyright notices in all AssemblyInfo.cs and *.nuspec files at the same time.versionupdater.exe /Version=1.0.*/Directory="..\Source"/Company="My Company"/Copyright="Copyright © My Company 2011"
FileHeaderUpdater
Forces an update of the *.cs file headers.The tool does a recursive search from the specified or current directory.
fileheaderupdater.exe /Directory="..\Source"/Company="My company"
Optional arguments
- /Exclude="Class1.cs Class2.cs"
- /Copyright="Copyright (c) My Company. All rights reserved"
Note
- AssemblyInfo.cs and the packages (nuget) folder are excluded by default
- Default copyright notice is "Copyright © {Company}. All rights reserved."
CleanSource
Cleans c# source code.PropertyCG
Property code generation from a very compact syntax.SolutionInfo
Exports info about the projects in a solution to .csv filesWikiT
Converts wiki formatted documents to html or word.WikiT.exe /input=source\*.wiki /output=output /format=html /template=template.html
/input | input directory and search pattern |
/output | output directory |
/format | output format (html or word) |
/extension | extension of output files |
/template | input template (html or docx file) |
XmlDocT
Creates simplified "MSDN-style" documentation formatted.- The input is assembly file (.dll) and xml comments file (.xml).
- The output will be written to a single .txt file
XmlDocT.exe ..\bin\release\myLibrary.dll
- Recommended tags (MSDN)
- On writing good XML comments
- GhostDoc
- Doxygen
- DocumentX
- Generating documentation from C# xml comments (stack overflow)
DocumentModel
A simplified document object model. Contains parsers for various wiki formats and formatters for wiki, FlowDocument, html and Word.FtpUpload
Uploads a single file to an ftp server using passive mode.FtpUpload.exe [host][username][password][localfile][remotefile]