Skip to content

Commit cd3a134

Browse files
committed
fix validation issues
1 parent 98dc51b commit cd3a134

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/containers/container-entry-point.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Visual Studio uses a custom container entry point depending on the project type
1919
|-|-|
2020
| **Linux containers** | The entry point is `tail -f /dev/null`, which is an infinite wait to keep the container running. When the app is launched through the debugger, it's the debugger that is responsible to run the app (that is, `dotnet webapp.dll`). If launched without debugging, the tooling runs a `docker exec -i {containerId} dotnet webapp.dll` to run the app.|
2121
| **Windows containers**| The entry point is something like `C:\remote_debugger\x64\msvsmon.exe /noauth /anyuser /silent /nostatus` which runs the debugger, so it's listening for connections. This method applies when the debugger runs the app. When launched without debugging, a `docker exec` command is used. For .NET Framework web apps, the entry point is slightly different where `ServiceMonitor` is added to the command.|
22+
:::moniker-end
2223

2324
:::moniker range=">=vs-2022"
2425
|Container type|Entry point|

docs/containers/edit-and-refresh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This article illustrates how to use Visual Studio to start an app in a local Doc
1919
If you already have a project of a supported type, Visual Studio can create a Dockerfile and configure your project to run in a container. See [Container Tools in Visual Studio](overview.md).
2020

2121
:::moniker range=">=vs-2022"
22-
Also, in Visual Studio 17.10 and later, [Hot Reload](..debugger/hot-reload.md) is supported in containers.
22+
Also, in Visual Studio 17.10 and later, [Hot Reload](../debugger/hot-reload.md) is supported in containers.
2323
:::moniker-end
2424

2525
## Prerequisites

0 commit comments

Comments
 (0)