dotnet-installer/src/dotnet
Jeff Kluge 8d7009cb83 Move some projects to netstandard2.0 (#8692)
* Move some projects to netstandard2.0

* Use version agnostic $(TargetFrameworkIdentifier) property to make changing versions easier since we only care about .NET Framework vs .NET Standard
* Add missing project to solution file
* Update TestPackageProjects.targets to use netstandard2.0 on non-Windows
2018-03-22 16:11:51 -07:00
..
CommandLine LOC CHECKIN | cli-release/2.0.0 | 20170714 2017-07-14 09:14:59 +02:00
commands LOC CHECKIN | dotnet/cli - release/15.5 | 20171031 2017-10-31 17:16:46 +01:00
Properties Handling an exception that happens when dotnet run is invoked with a file that is not a valid project file. We catch that exception and re-throw it as a GracefulException. 2017-06-23 10:47:09 -07:00
Telemetry Hashed telemetry and event name change (#7919) 2017-10-27 10:58:25 -07:00
xlf LOC CHECKIN | cli-release/2.0.0 | 20170714 2017-07-14 09:14:59 +02: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 Installer Success Reporting for Windows 2017-07-07 12:56:21 -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 Remove unused string with ID differing only by case 2017-06-13 20:44:55 -07:00
CommonOptions.cs Use latest command line parser 2017-06-27 10:03:53 -07:00
dotnet.csproj Move some projects to netstandard2.0 (#8692) 2018-03-22 16:11:51 -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
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 Installer Success Reporting for Windows 2017-07-07 12:56:21 -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 Hashed telemetry and event name change (#7919) 2017-10-27 10:58:25 -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
TopLevelCommandParserResult.cs Hashed telemetry and event name change (#7919) 2017-10-27 10:58:25 -07:00
UILanguageOverride.cs Fix VSLANG handling typo 2017-07-19 11:51:38 -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.