dotnet-installer/src/dotnet
2017-03-10 10:34:27 -08:00
..
CommandLine Add missing copyright headers to all cs files 2017-03-02 21:04:03 -08:00
commands Merge remote-tracking branch 'jonsequitur/tab-completion' into tab-completion 2017-03-10 10:34:27 -08:00
Properties Add missing copyright headers to all cs files 2017-03-02 21:04:03 -08:00
xlf LOC CHECKIN | dotnet/cli | 20170116 2017-01-16 14:52:18 +01:00
AppliedOptionExtensions.cs move dotnet-run 2017-03-10 10:13:11 -08:00
ArgumentForwardingExtensions.cs move dotnet-run 2017-03-10 10:13:11 -08:00
CommandCreationException.cs Add missing copyright headers to all cs files 2017-03-02 21:04:03 -08:00
CommonLocalizableStrings.cs undelete some unused localizable strings 2017-02-13 13:35:43 -08:00
CommonOptions.cs Centralize VersionSuffixOption 2017-03-10 01:10:23 -08:00
dotnet.csproj restore:captures arguments for forwarding to MSBuild 2017-03-07 16:40:18 -08:00
DotNetCommandFactory.cs Hide restore output of first-run experience (#4740) 2016-11-28 00:46:26 -08:00
DotNetSubCommandBase.cs WIP Refactor and improve tests 2016-12-16 01:04:09 -08:00
DotNetTopLevelCommandBase.cs revert subcommand change, align CliCommandLine versions 2017-03-06 16:34:05 -08:00
ForwardingApp.cs don't split on : or = in restore command parse 2017-03-07 11:28:35 -08:00
HelpException.cs trigger help display using HelpException 2017-03-09 12:31:34 -08:00
ICommandRunner.cs Fix tests 2016-08-26 18:14:04 -07:00
ITelemetry.cs Add performance tracing 2016-04-29 08:16:37 -07:00
MsbuildProject.cs introduce dotnet complete command 2017-03-06 12:19:06 -08:00
MsbuildProjectExtensions.cs Implement dotnet add project (#5022) 2016-12-14 13:53:11 -10:00
MulticoreJitActivator.cs display CommandParsingException gracefully (#5493) 2017-01-30 14:36:44 -08:00
MulticoreJitProfilePathCalculator.cs Update the CLI to netcoreapp2.0. 2017-01-26 07:28:59 -06:00
NuGetForwardingApp.cs Merge Nuget changes 2016-08-26 17:23:33 -07:00
Parser.cs Initial Cache parser 2017-03-09 16:12:08 -08:00
ParseResultExtensions.cs trigger help display using HelpException 2017-03-09 12:31:34 -08:00
ParserExtensions.cs trigger help display using HelpException 2017-03-09 12:31:34 -08:00
ProcessStartInfoExtensions.cs Add missing copyright headers to all cs files 2017-03-02 21:04:03 -08:00
Program.cs trigger help display using HelpException 2017-03-09 12:31:34 -08:00
ProjectExtensions.cs introduce dotnet complete command 2017-03-06 12:19:06 -08:00
ProjectGlobbingResolver.cs Trailing newlines + standardize tabs -> spaces 2017-03-02 20:35:20 -08:00
ProjectInstanceExtensions.cs Default to C# project type guid 2017-02-14 14:57:04 -08:00
README.md Update README.md 2017-02-10 00:01:56 -08:00
SlnFileExtensions.cs Do not add duplicate projects (#5698) 2017-02-14 15:47:06 -08:00
SlnFileFactory.cs Improve error messages for why a solution failed to load (#5176) 2016-12-29 09:21:55 -10:00
SlnProjectCollectionExtensions.cs Address PR comments 2017-01-24 15:02:19 -08:00
SlnProjectExtensions.cs Address PR comments 2017-01-24 15:02:19 -08:00
Telemetry.cs Custom logger for MSBuild to receive telemetry events (#4551) 2016-10-31 16:16:39 -07:00

% DOTNET(1) % Microsoft Corporation dotnetclifeedback@microsoft.com % June 2016

NAME

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

SYNOPSIS

dotnet [--version] [--help] [--verbose] [--info] <command> [<args>]

DESCRIPTION

dotnet is a generic driver for the Command Line Interface (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 feature, the command is specified after dotnet, such as dotnet build. All of the arguments following the command are its own arguments.

The only time dotnet is used as a command on its own is to run portable apps. Just specify a portable application DLL after the dotnet verb to execute the application.

OPTIONS

-v, --verbose

Enables verbose output.

--version

Prints out the version of the CLI tooling.

--info

Prints out more detailed information about the CLI tooling, such as the current operating system, commit SHA for the version, etc.

-h, --help

Prints out a short help and a list of current commands.

DOTNET COMMANDS

The following commands exist for dotnet:

  • dotnet-new
    • Initializes a C# or F# console application project.
  • dotnet-restore
    • Restores the dependencies for a given application.
  • dotnet-build
    • Builds a .NET Core application.
  • dotnet-publish
    • Publishes a .NET portable or self-contained application.
  • dotnet-run
    • Runs the application from source.
  • dotnet-test
    • Runs tests using a test runner specified in the project.json.
  • dotnet-pack
    • Creates a NuGet package of your code.

EXAMPLES

dotnet new

Initializes a sample .NET Core console application that can be compiled and run.

dotnet restore

Restores dependencies for a given application.

dotnet compile

Compiles the application in a given directory.

dotnet myapp.dll

Runs a portable app named myapp.dll.

ENVIRONMENT

DOTNET_PACKAGES

The primary package cache. If not set, it defaults to $HOME/.nuget/packages on Unix or %HOME%\NuGet\Packages on Windows.

DOTNET_SERVICING

Specifies the location of the servicing index to use by the shared host when loading the runtime.

DOTNET_CLI_TELEMETRY_OPTOUT

Specifies whether data about the .NET Core tools usage is collected and sent to Microsoft. true to opt-out of the telemetry feature (values true, 1 or yes accepted); otherwise, false (values false, 0 or no accepted). If not set, it defaults to false, that is, the telemetry feature is on.