dotnet-installer/src/dotnet
2017-06-14 00:27:26 -07:00
..
CommandLine Convert LocalizableStrings.cs to resx 2017-06-06 21:50:58 -07:00
commands Do no pass down to implicit restore the framework option. 2017-06-13 19:25:23 -07:00
Properties Add missing copyright headers to all cs files 2017-03-02 21:04:03 -08:00
xlf LOC CHECKIN | cli-master | 20170529 2017-05-30 11:19:00 -07:00
AppliedOptionExtensions.cs move dotnet-run 2017-03-10 10:13:11 -08:00
ArgumentForwardingExtensions.cs publish, cache, text fixes; rename ForwardAs and introduce ForwardAsMany 2017-03-16 13:22:08 -07:00
BuiltInCommandMetadata.cs merge master 2017-03-19 17:09:05 -07:00
BuiltInCommandsCatalog.cs Remove ProjectJson solution and its tests 2017-05-01 08:27:02 -07:00
CommandBase.cs move parse result validation to CommandBase to allow custom messages 2017-03-19 14:30:43 -07:00
CommandCreationException.cs Add missing copyright headers to all cs files 2017-03-02 21:04:03 -08:00
CommonLocalizableStrings.resx Changing the parser description for commands that have implicit restore. 2017-06-07 23:15:36 -07:00
CommonOptions.cs Implicit restore for build, pack, publish, run and test. 2017-06-07 17:39:29 -07:00
dotnet.csproj Updating the SDK. Mostly, had to change PackageTargetFallback to AssetTargetFallback. 2017-06-14 00:27:26 -07:00
DotNetCommandFactory.cs merge master 2017-03-19 17:09:05 -07:00
DotNetTopLevelCommandBase.cs Show help info when no or wrong arguments are given 2017-05-04 01:01:35 +02:00
ForwardingApp.cs Apply code review feedback 2017-04-27 09:30:40 -07:00
HelpException.cs throw exceptions for command not found 2017-03-13 20:06:59 -07: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 Call into project in .NET SDK to create deps.json files for tools instead of doing so directly 2017-04-27 09:29:16 -07:00
Parser.cs Replace dotnet help parser with CliCommandLineParser 2017-04-10 22:11:14 -07:00
ParseResultExtensions.cs check for help in DotNetTopLevelCommandBase 2017-03-23 08:15:41 -07:00
ParserExtensions.cs trigger help display using HelpException 2017-03-09 12:31:34 -08:00
Program.cs Fixing failures in tests when the user has a fallbackfolder setup on this machine already. These failures are again due to the fact that --packages are not populated when the packages are found in the fallback folder. 2017-04-03 22:15:40 -07:00
ProjectExtensions.cs introduce dotnet complete command 2017-03-06 12:19:06 -08:00
ProjectInstanceExtensions.cs Default to C# project type guid 2017-02-14 14:57:04 -08:00
README.md Fixed broken links 2017-03-28 15:50:05 +02:00
SlnFileExtensions.cs Gracefully report invalid project in sln-add 2017-05-06 02:08:00 +02: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

NUGET_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.