1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
.TH "mdtool" 1
.SH NAME
mdtool \- MonoDevelop Application Runner
.SH SYNOPSIS
.B mdtool
<applicationId> ...
.PP
.B mdtool
setup ...
.PP
.B mdtool
-q
.SH DESCRIPTION
.B mdtool
is a tool that can execute head-less MonoDevelop applications, this
can be used for example to do batch compilations without starting up
the MonoDevelop GUI.
.SH USAGE
.TP
.B applicationId ...
Runs the specified application.
.TP
.B \/-q
Lists available applications.
.PP
.SH Available Applications
.PP
The list of applications returned by the option -q might be different
depending on which add-ins are installed.
.TP
.B gsetup
Graphical add-in setup utility.
.TP
.B build [options] [project-file]
Project build tool. Use this tool to build any solution supported by MonoDevelop
(eg. .mds, .sln). If no solution/project is specified then it will pull the
first file in the directory with the .mds extension).
You would use this option to build packages in a head-less or batch
fashion.
.RS
.ne 8
.B Options
.RS
.ne 8
.B --f , --buildfile:FILE
Filename of the Project or the solution to build.
.B --p , --project:PROJECT
Name of the project to build.
.RE
.RE
.TP
.B dbgen
Parser database generation tool.
.TP
.B project-export
Project conversion tool.
.TP
.B IDE
The MonoDevelop IDE.
.TP
.B generate-makefiles <solution-file> [--simple-makefiles] [-d:default-config]
Makefile generator tool. This can be used to generate makefiles from any solution supported by MonoDevelop.
.RS
.ne 8
.B Options
.RS
.ne 8
.B --simple-makefiles , -s
Generates set of Makefiles with the most common targets, and a
configuration script that does a basic check of package
dependencies. Default is to generate Makefile structure based
on Autotools with the standard targets and configuration scripts.
.B -d:default-config
Configuration that the Makefile will build by default. Other
configurations can be selected via the '--config' or '--enable-*'
option of the generated configure script.
.RE
.RE
.TP
.B setup command [arg1, .., argn2]
Runs the MonoDevelop add-in setup command. You must specify a command
to execute. If none is provided a list of commands is displayed
.RS
.ne 8
.B Add-in Commands
.RS
.ne 8
.B install (i) [package-name|package-file]
Installs an add-in or set of addins. The command argument is a list of
files and/or package names. If a package name is provided the package
will be looked out in the registered repositories. A specific add-in
version can be specified by appending it to. the package name using
'/' as a separator, like in this example:
MonoDevelop.SourceEditor/0.9.1
.TP
.B uninstall (u) [package-name]
Uninstalls an add-in. The command argument is the name
of the add-in to uninstall.
.TP
.B check-install (ci)
Checks if a package is installed. If it is not, it looks for
the package in the registered repositories, and if found
the package is downloaded and installed, including all
needed dependencies.
.TP
.B update (up)
Downloads and installs available updates for installed add-ins.
.TP
.B list (l)
Prints a list of all installed add-ins.
.TP
.B list-av (la)
Prints a list of add-ins available to install in the
registered repositories.
.TP
.B list-update (lu)
Prints a list of available add-in updates in the registered repositories.
.RE
.B Repository Commands
.RS
.ne 8
.TP
.B rep-add (ra) url1 [url2 [url2]]
Registers an add-in repository. Several URLs can be provided.
.TP
.B rep-remove (rr) url1 [url2 [url2]]
Unregisters an add-in repository. Several URLs can be provided.
.TP
.B rep-update (ru)
Updates the lists of addins available in all registered repositories.
.TP
.B rep-list (rl)
Shows a list of all registered repositories.
.RE
.B Add-in Registry Commands:
.RS
.ne 8
.TP
.B reg-update (rgu)
Looks for changes in add-in directories and updates the registry.
New add-ins will be added and deleted add-ins will be removed.
.TP
.B reg-build (rgu)
.TP
.B info [filename|package-name]
Prints information about an add-in.
.RE
.B Packaging Commands
.RS
.ne 8
.TP
.B rep-build (rb) path
Scans the provided directory and generates a set of index files with entries
for all add-in packages found in the directory tree. The resulting file
structure is an add-in repository that can be published in a web site or a
shared directory.
.TP
.B pack (p) file-path
Creates an add-in package (.mpack file) which includes all files
needed to deploy an add-in. The command parameter is the path to
the add-in's configuration file.
.TP
.B help (h) [command]
Shows help for the given command
.RE
.B Debug Commands:
.RS
.ne 8
.TP
.B dump-file
Prints the contents of a registry file for debugging.
.RE
.RE
.SH SEE ALSO
monodevelop(1), mono(1), mcs(1)
.BR
.SH COPYRIGHT
Copyright (C) 2007 Novell, Inc (http://www.novell.com)
.SH MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/monodevelop-list for details.
.SH WEB SITE
Visit http://www.monodevelop.com for details
|