dotnet-installer/src/Microsoft.DotNet.Cli
2016-01-09 16:50:31 -08:00
..
Microsoft.DotNet.Cli.xproj Initial commit 2015-10-03 11:34:08 -07:00
Program.cs Packaged Commands 2016-01-09 16:50:31 -08:00
project.json Merge pull request #722 from Sridhar-MS/centos-tests 2016-01-06 01:14:04 -08:00
README.md Add manual pages for current commands 2015-12-29 12:24:02 -08:00

dotnet

NAME

dotnet -- general driver for running the command-line commands

SYNOPSIS

dotnet [common-options] [command] [arguments]

DESCRIPTION

dotnet is a generic driver for the CLI toolchain. Invoked on its own, it will give out brief usage instructions.

Each specific feature is implemented as a command. In order to use the feautre, it is specified after dotnet, i.e. dotnet compile. All of the arguments following the command are command's own arguments.

Arguments

-v, --verbose Enable verbose output

--version Print out the version of the CLI tooling

Commands

There are many possible commands that you can use. The few main ones are:

  • run - run your code from source
  • compile - compile your source code
  • publish - publish

SEE ALSO

dotnet-compile dotnet-run dotnet-publish