Skip to content

Commit 1fb0f36

Browse files
authored
fix linting errors and redirection
1 parent f18654c commit 1fb0f36

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.openpublishing.redirection.core.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1519,7 +1519,7 @@
15191519
},
15201520
{
15211521
"source_path_from_root": "docs/core/tools/dotnet-migrate.md",
1522-
"redirect_url": "/dotnet/navigate/migration-guide/"
1522+
"redirect_url": "/dotnet/core/porting"
15231523
}
15241524
]
15251525
}

docs/core/tools/dotnet-package-remove.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,5 @@ The package reference to remove.
5858

5959
```dotnetcli
6060
dotnet package remove Newtonsoft.Json --file MyApp.cs
61-
```
61+
```
62+

docs/core/tools/dotnet-package-update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The package reference to remove.
4242

4343
- **`-v|--verbosity <LEVEL>`**
4444

45-
Sets the verbosity level of the command. Allowed values are `q[uiet]`, `m[inimal]`, `n[ormal]`, `d[etailed]`, and `diag[nostic]`. The default is `normal`.
45+
Sets the verbosity level of the command. Allowed values are `q[uiet]`, `m[inimal]`, `n[ormal]`, `d[etailed]`, and `diag[nostic]`. The default is `normal`.
4646

4747
[!INCLUDE [help](../../../includes/cli-help.md)]
4848

docs/core/tools/dotnet-run.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,7 @@ To run the application, the `dotnet run` command resolves the dependencies of th
140140

141141
- **`--no-self-contained`**
142142

143-
Publish your application as a framework dependent application. A compatible .NET runtime must be installed on
144-
the target machine to run your application.
143+
Publish your application as a framework dependent application. A compatible .NET runtime must be installed on the target machine to run your application.
145144

146145
[!INCLUDE [os](../../../includes/cli-os.md)]
147146

docs/core/tools/dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ The following options are available only when `dotnet` runs an application by us
170170
| [dotnet clean](dotnet-clean.md) | Clean build outputs. |
171171
| [dotnet exec](#options-for-running-an-application) | Runs a .NET application. |
172172
| [dotnet help](dotnet-help.md) | Shows more detailed documentation online for the command. |
173-
| [dotnet migrate](dotnet-migrate.md) | Migrates a valid Preview 2 project to a .NET Core SDK 1.0 project. |
174173
| [dotnet msbuild](dotnet-msbuild.md) | Provides access to the MSBuild command line. |
175174
| [dotnet new](dotnet-new.md) | Initializes a C# or F# project for a given template. |
176175
| [dotnet pack](dotnet-pack.md) | Creates a NuGet package of your code. |
@@ -198,6 +197,7 @@ The following options are available only when `dotnet` runs an application by us
198197
| [dotnet package list](dotnet-package-list.md) | Lists NuGet packages. |
199198
| [dotnet package remove](dotnet-package-remove.md) | Removes a NuGet package. |
200199
| [dotnet package search](dotnet-package-search.md) | Searches for a NuGet package. |
200+
| [dotnet package update](dotnet-package-update.md) | Updates a NuGet package. |
201201

202202
### NuGet commands
203203

docs/core/tools/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ The following commands are installed by default:
6464
- [`test`](dotnet-test.md)
6565
- [`vstest`](dotnet-vstest.md)
6666
- [`pack`](dotnet-pack.md)
67-
- [`migrate`](dotnet-migrate.md)
6867
- [`clean`](dotnet-clean.md)
6968
- [`sln`](dotnet-sln.md)
7069
- [`help`](dotnet-help.md)
@@ -78,6 +77,7 @@ The following commands are installed by default:
7877
- [`package list`](dotnet-package-list.md)
7978
- [`package remove`](dotnet-package-remove.md)
8079
- [`package search`](dotnet-package-search.md)
80+
- [`package update`](dotnet-package-update.md)
8181
- [`reference add`](dotnet-reference-add.md)
8282
- [`reference list`](dotnet-reference-list.md)
8383
- [`reference remove`](dotnet-reference-remove.md)

0 commit comments

Comments
 (0)