2f51091785
Convert the existing README.md from command directories into man pages. This was done using pandoc. Some commands still don't have READMEs so they are not present here. Fix #3
38 lines
1.2 KiB
Groff
38 lines
1.2 KiB
Groff
.\" Automatically generated by Pandoc 1.15.1
|
|
.\"
|
|
.hy
|
|
.TH "dotnet-run" "1" "" "" ""
|
|
.SH dotnet\-run
|
|
.SH NAME
|
|
.PP
|
|
dotnet\-run \-\- Runs source code \[aq]in\-place\[aq] without any
|
|
explicit compile or launch commands.
|
|
.SH SYNOPSIS
|
|
.PP
|
|
dotnet run options (#options)
|
|
.SH DESCRIPTION
|
|
.PP
|
|
The run command provides a convenient option to run source code with one
|
|
command.
|
|
It compiles source code, generates an output program and then runs that
|
|
program.
|
|
This command is useful for fast iterative development and can also be
|
|
used to run a source\-distributed program (e.g.
|
|
website).
|
|
.PP
|
|
This command relies on the compile
|
|
command (https://github.com/dotnet/cli/issues/48) to compile source
|
|
inputs to a .NET assembly, before launching the program.
|
|
The requirements for and handling of source inputs for this command are
|
|
all inhereted from the compile command.
|
|
The documentation for the compile command provides more information on
|
|
those requirements.
|
|
.PP
|
|
Output files, are written to the child \f[C]bin\f[] folder, which will
|
|
be created if it doesn\[aq]t exist.
|
|
Files will be overwritten as needed.
|
|
Temporary files are written to the child \f[C]obj\f[] folder.
|
|
.SH Options
|
|
.PP
|
|
\-v, \-\-verbose Prints verbose logging information, to follow the flow
|
|
of execution of the command.
|