Skip to content

Commit 1beeb09

Browse files
committed
Fix other links
1 parent 8ac00e8 commit 1beeb09

File tree

6 files changed

+14
-21
lines changed

6 files changed

+14
-21
lines changed

docs/core/deploying/single-file/overview.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Publish a single file application using the [dotnet publish](../../tools/dotnet-
7575
dotnet publish -r linux-x64 -p:PublishSingleFile=true --self-contained false
7676
```
7777

78-
For more information, see [Publish .NET Core apps with .NET CLI](../publish-with-cli.md).
78+
For more information, see [.NET application publishing overview](../../deploying/index.md).
7979

8080
# [Visual Studio](#tab/vs)
8181

@@ -105,7 +105,7 @@ Visual Studio creates reusable publishing profiles that control how your applica
105105

106106
1. Choose **Publish** to publish your app as a single file.
107107

108-
For more information, see [Publish .NET Core apps with Visual Studio](../publish-with-vs.md).
108+
For more information, see[.NET application publishing overview](../../deploying/index.md).
109109

110110
---
111111

@@ -235,7 +235,5 @@ Single file apps can be inspected using the [ILSpy tool](https://ilspy.net/). Th
235235

236236
## See also
237237

238-
- [.NET Core application deployment](../index.md)
239-
- [Publish .NET apps with .NET CLI](../publish-with-cli.md)
240-
- [Publish .NET Core apps with Visual Studio](../publish-with-vs.md)
238+
- [.NET application publishing overview](../../deploying/index.md)
241239
- [`dotnet publish` command](../../tools/dotnet-publish.md)

docs/core/deploying/trimming/trim-self-contained.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Trimming is only supported for self-contained apps.
5151

5252
`dotnet publish -r win-x64 -p:PublishTrimmed=true`
5353

54-
For more information, see [Publish .NET apps with .NET CLI](../publish-with-cli.md).
54+
For more information, see [.NET application publishing overview](../../deploying/index.md).
5555

5656
### Publish with Visual Studio
5757

@@ -67,11 +67,9 @@ For more information, see [Publish .NET apps with .NET CLI](../publish-with-cli.
6767

6868
:::image type="content" source="../media/trim-self-contained/vs-publish-trimmed.png" alt-text="Visual studio publish page with Publish Trimmed selected.":::
6969

70-
For more information, see [Publish .NET Core apps with Visual Studio](../publish-with-vs.md).
70+
For more information, see [.NET application publishing overview](../../deploying/index.md).
7171

7272
## See also
7373

74-
- [.NET Core application deployment](../index.md).
75-
- [Publish .NET apps with .NET CLI](../publish-with-cli.md).
76-
- [Publish .NET Core apps with Visual Studio](../publish-with-vs.md).
74+
- [.NET application publishing overview](../../deploying/index.md).
7775
- [dotnet publish command](../../tools/dotnet-publish.md).

docs/core/tools/dotnet-publish.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dotnet publish -h|--help
3838
- A *.runtimeconfig.json* file that specifies the shared runtime that the application expects, as well as other configuration options for the runtime (for example, garbage collection type).
3939
- The application's dependencies, which are copied from the NuGet cache into the output folder.
4040

41-
The `dotnet publish` command's output is ready for deployment to a hosting system (for example, a server, PC, Mac, laptop) for execution. It's the only officially supported way to prepare the application for deployment. Depending on the type of deployment that the project specifies, the hosting system may or may not have the .NET shared runtime installed on it. For more information, see [Publish .NET apps with the .NET CLI](../deploying/publish-with-cli.md).
41+
The `dotnet publish` command's output is ready for deployment to a hosting system (for example, a server, PC, Mac, laptop) for execution. It's the only officially supported way to prepare the application for deployment. Depending on the type of deployment that the project specifies, the hosting system may or may not have the .NET shared runtime installed on it. For more information, see [.NET application publishing overview](../deploying/index.md).
4242

4343
### Implicit restore
4444

@@ -196,7 +196,7 @@ For more information, see the following resources:
196196

197197
- **`--sc|--self-contained [true|false]`**
198198

199-
Publishes the .NET runtime with your application so the runtime doesn't need to be installed on the target machine. Default is `true` if a runtime identifier is specified and the project is an executable project (not a library project). For more information, see [.NET application publishing](../deploying/index.md) and [Publish .NET apps with the .NET CLI](../deploying/publish-with-cli.md).
199+
Publishes the .NET runtime with your application so the runtime doesn't need to be installed on the target machine. Default is `true` if a runtime identifier is specified and the project is an executable project (not a library project). For more information, see [Self-contained deployment](../deploying/index.md#self-contained-deployment).
200200

201201
If this option is used without specifying `true` or `false`, the default is `true`. In that case, don't put the solution or project argument immediately after `--self-contained`, because `true` or `false` is expected in that position.
202202

@@ -210,7 +210,7 @@ For more information, see the following resources:
210210

211211
- **`-r|--runtime <RUNTIME_IDENTIFIER>`**
212212

213-
Publishes the application for a given runtime. For a list of Runtime Identifiers (RIDs), see the [RID catalog](../rid-catalog.md). For more information, see [.NET application publishing](../deploying/index.md) and [Publish .NET apps with the .NET CLI](../deploying/publish-with-cli.md). If you use this option, use `--self-contained` or `--no-self-contained` also.
213+
Publishes the application for a given runtime. For a list of Runtime Identifiers (RIDs), see the [RID catalog](../rid-catalog.md). For more information, see [.NET application publishing overview](../deploying/index.md). If you use this option, use `--self-contained` or `--no-self-contained` also.
214214

215215
[!INCLUDE [tl](../../../includes/cli-tl.md)]
216216

@@ -271,7 +271,6 @@ For more information, see the following resources:
271271
## See also
272272

273273
- [.NET application publishing overview](../deploying/index.md)
274-
- [Publish .NET apps with the .NET CLI](../deploying/publish-with-cli.md)
275274
- [Target frameworks](../../standard/frameworks.md)
276275
- [Runtime Identifier (RID) catalog](../rid-catalog.md)
277276
- [Containerize a .NET app with dotnet publish](../containers/sdk-publish.md)

docs/core/tutorials/publishing-with-visual-studio-code.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ In the following steps, you'll look at the files created by the publish process.
6262

6363
- *HelloWorld.dll*
6464

65-
This is the [framework-dependent deployment](../deploying/publish-with-cli.md#framework-dependent-deployment) version of the application. To run this dynamic link library, enter `dotnet HelloWorld.dll` at a command prompt. This method of running the app works on any platform that has the .NET runtime installed.
65+
This is the [framework-dependent deployment](../deploying/index.md#cross-platform-dll-deployment) version of the application. To run this dynamic link library, enter `dotnet HelloWorld.dll` at a command prompt. This method of running the app works on any platform that has the .NET runtime installed.
6666

6767
- *HelloWorld.exe* (*HelloWorld* on Linux or macOS.)
6868

69-
This is the [framework-dependent executable](../deploying/publish-with-cli.md#framework-dependent-executable) version of the application. The file is operating-system-specific.
69+
This is the [framework-dependent executable](../deploying/index.md#framework-dependent-deployment) version of the application. The file is operating-system-specific.
7070

7171
- *HelloWorld.pdb* (optional for deployment)
7272

@@ -98,8 +98,7 @@ In the following steps, you'll look at the files created by the publish process.
9898

9999
## Additional resources
100100

101-
- [.NET application deployment](../deploying/index.md)
102-
- [Publish .NET apps with the .NET CLI](../deploying/publish-with-cli.md)
101+
- [.NET application publishing overview](../deploying/index.md)
103102
- [`dotnet publish`](../tools/dotnet-publish.md)
104103
- [Use the .NET SDK in continuous integration (CI) environments](../../devops/dotnet-cli-and-continuous-integration.md)
105104

docs/core/tutorials/publishing-with-visual-studio.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ In the following steps, you'll look at the files created by the publish process.
104104

105105
## Additional resources
106106

107-
- [.NET application deployment](../deploying/index.md)
108-
- [Publish .NET apps with the .NET CLI](../deploying/publish-with-cli.md)
107+
- [.NET application publishing overview](../deploying/index.md)
109108
- [`dotnet publish`](../tools/dotnet-publish.md)
110109
- [Tutorial: Publish a .NET console application using Visual Studio Code](publishing-with-visual-studio-code.md)
111110
- [Use the .NET SDK in continuous integration (CI) environments](../../devops/dotnet-cli-and-continuous-integration.md)

docs/core/whats-new/dotnet-9/runtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ CET imposes some limitations on CET-enabled processes and can result in a small
7474

7575
## .NET install search behavior
7676

77-
.NET apps can now be configured for how they should [search for the .NET runtime](../../deploying/publish-with-cli.md#configure-net-install-search-behavior). This capability can be used with private runtime installations or to more strongly control the execution environment.
77+
.NET apps can now be configured for how they should [search for the .NET runtime](../../deploying/index.md#configure-net-install-search-behavior). This capability can be used with private runtime installations or to more strongly control the execution environment.
7878

7979
## Performance improvements
8080

0 commit comments

Comments
 (0)