Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix-up dotnet command docs #1705

Merged
merged 7 commits into from
Mar 21, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge branch 'master' into guardrex/dotnet-command-fixup
  • Loading branch information
guardrex authored Mar 15, 2017
commit 30ec582e891f1091af5b6d845b67895f503b2738
2 changes: 1 addition & 1 deletion docs/core/tools/dotnet-add-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Specifies the project file. If not specified, the command will search the curren

`PROJECT_REFERENCES`

Project-to-project (P2P) references to add. Specify one or more projects. Globbing patterns are supported on Unix/Linux-based systems.
Project-to-project (P2P) references to add. Specify one or more projects. [Glob patterns](https://en.wikipedia.org/wiki/Glob_(programming)) are supported on Unix/Linux-based systems.

## Options

Expand Down
2 changes: 1 addition & 1 deletion docs/core/tools/dotnet-remove-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Target project file. If not specified, the command searches the current director

`PROJECT_REFERENCES`

Project-to-project references to remove. You can specify one or multiple projects. Globbing patterns are supported on Unix/Linux-based systems.
Project to project (P2P references to remove. You can specify one or multiple projects. [Glob patterns](https://en.wikipedia.org/wiki/Glob_(programming)) are supported on Unix/Linux based terminals.

## Options

Expand Down
6 changes: 5 additions & 1 deletion docs/core/tools/dotnet-restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ Prints out a short help for the command.

Specifies a NuGet package source to use during the restore operation. This overrides all of the sources specified in the *NuGet.config* file(s). Multiple sources can be provided by specifying this option multiple times.

`--packages <PACKAGES_DIRECTORY>`
`-r|--runtime <RUNTIME_IDENTIFIER>`

Specifies a runtime for the package restore. This is used to restore packages for runtimes not explicitly listed in the `<RuntimeIdentifiers>` tag in the *.csproj* file. For a list of Runtime Identifiers (RIDs), see the [RID catalog](../rid-catalog.md). Provide multiple RIDs by specifying this option multiple times.

`--packages <PACKAGES_DIRECTORY]`

Specifies the directory for restored packages.

Expand Down
4 changes: 2 additions & 2 deletions docs/core/tools/dotnet-sln.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ The `dotnet sln` command provides a convenient way to add, remove, and list proj

`add **/*`

Adds a project or multiple projects to the solution file. Globbing patterns are supported on Unix/Linux based terminals.
Adds a project or multiple projects to the solution file. [Globbing patterns](https://en.wikipedia.org/wiki/Glob_(programming)) are supported on Unix/Linux based terminals.

`remove <PROJECT> ...`

`remove **/*`

Remove a project or multiple projects from the solution file. Globbing patterns are supported on Unix/Linux based terminals.
Remove a project or multiple projects from the solution file. [Globbing patterns](https://en.wikipedia.org/wiki/Glob_(programming)) are supported on Unix/Linux based terminals.

`list`

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.