Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/core/tools/dotnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The `dotnet` command has two functions:

- It runs .NET Core applications.

You specify the path to an application `.dll` file to run the application. For example, `dotnet myapp.dll` runs the `myapp` application. See [.NET Core application deployment](../deploying/index.md) to learn about deployment options.
You specify the path to an application `.dll` file to run the application. To run the application means to find and execute the entry point, which in the case of console apps is the `Main` method. For example, `dotnet myapp.dll` runs the `myapp` application. See [.NET Core application deployment](../deploying/index.md) to learn about deployment options.

## Options

Expand All @@ -71,7 +71,7 @@ The following options are for `dotnet` by itself. For example, `dotnet --info`.

- **`--list-runtimes`**

Prints out a list of the installed .NET Core runtimes.
Prints out a list of the installed .NET Core runtimes. An x86 version of the SDK lists only x86 runtimes, and an x64 version of the SDK lists only x64 runtimes.

- **`--list-sdks`**

Expand Down