You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C177636 : removing extra hyphen to avoid broken display of table (#17693)
* C177636 : removing extra hyphen to avoid broken display of table
Localization team has reported source content issue that causes localized version to have broken/different format compared to en-us version.
Description: Extra hyphen is broken display on table for this page https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/directory-structure?view=aspnetcore-2.2
* Asterisk touch-up
* Remove extra line
Co-authored-by: Luke Latham <1622880+guardrex@users.noreply.github.com>
Copy file name to clipboardExpand all lines: aspnetcore/host-and-deploy/directory-structure.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Learn about the directory structure of published ASP.NET Core apps.
5
5
monikerRange: '>= aspnetcore-2.2'
6
6
ms.author: riande
7
7
ms.custom: mvc
8
-
ms.date: 03/20/2020
8
+
ms.date: 04/09/2020
9
9
uid: host-and-deploy/directory-structure
10
10
---
11
11
# ASP.NET Core directory structure
@@ -22,7 +22,7 @@ The *publish* directory contains the app's deployable assets produced by the [do
22
22
23
23
| App Type | Directory Structure |
24
24
| -------- | ------------------- |
25
-
|[Framework-dependent Executable (FDE)](/dotnet/core/deploying/#framework-dependent-executables-fde)| <ul><li>publish†<ul><li>Views† MVC apps; if views aren't precompiled</li><li>Pages† MVC or Razor Pages apps, if pages aren't precompiled</li><li>wwwroot†</li><li>\*.dll files</li><li>{ASSEMBLY NAME}.deps.json</li><li>{ASSEMBLY NAME}.dll</li><li>{ASSEMBLY NAME}{.EXTENSION} *.exe* extension on Windows, no extension on macOS or Linux</li><li>{ASSEMBLY NAME}.pdb</li><li>{ASSEMBLY NAME}.Views.dll</li><li>{ASSEMBLY NAME}.Views.pdb</li><li>{ASSEMBLY NAME}.runtimeconfig.json</li><li>web.config (IIS deployments)</li><li>createdump ([Linux createdump utility](https://github.com/dotnet/coreclr/blob/master/Documentation/botr/xplat-minidump-generation.md#configurationpolicy))</li><li>\*.so (Linux shared object library)</li><li>\*.a (macOS archive)</li><li>\*.dylib (macOS dynamic library)</li></ul></li></ul> |
25
+
|[Framework-dependent Executable (FDE)](/dotnet/core/deploying/#framework-dependent-executables-fde)| <ul><li>publish†<ul><li>Views† MVC apps; if views aren't precompiled</li><li>Pages† MVC or Razor Pages apps, if pages aren't precompiled</li><li>wwwroot†</li><li>\*.dll files</li><li>{ASSEMBLY NAME}.deps.json</li><li>{ASSEMBLY NAME}.dll</li><li>{ASSEMBLY NAME}{.EXTENSION} .exe extension on Windows, no extension on macOS or Linux</li><li>{ASSEMBLY NAME}.pdb</li><li>{ASSEMBLY NAME}.Views.dll</li><li>{ASSEMBLY NAME}.Views.pdb</li><li>{ASSEMBLY NAME}.runtimeconfig.json</li><li>web.config (IIS deployments)</li><li>createdump ([Linux createdump utility](https://github.com/dotnet/coreclr/blob/master/Documentation/botr/xplat-minidump-generation.md#configurationpolicy))</li><li>\*.so (Linux shared object library)</li><li>\*.a (macOS archive)</li><li>\*.dylib (macOS dynamic library)</li></ul></li></ul> |
26
26
|[Self-contained Deployment (SCD)](/dotnet/core/deploying/#self-contained-deployments-scd)| <ul><li>publish†<ul><li>Views† MVC apps, if views aren't precompiled</li><li>Pages† MVC or Razor Pages apps, if pages aren't precompiled</li><li>wwwroot†</li><li>\*.dll files</li><li>{ASSEMBLY NAME}.deps.json</li><li>{ASSEMBLY NAME}.dll</li><li>{ASSEMBLY NAME}.exe</li><li>{ASSEMBLY NAME}.pdb</li><li>{ASSEMBLY NAME}.Views.dll</li><li>{ASSEMBLY NAME}.Views.pdb</li><li>{ASSEMBLY NAME}.runtimeconfig.json</li><li>web.config (IIS deployments)</li></ul></li></ul> |
27
27
28
28
†Indicates a directory
@@ -52,9 +52,9 @@ The *publish* directory contains the app's deployable assets produced by the [do
52
52
53
53
| App Type | Directory Structure |
54
54
| -------- | ------------------- |
55
-
|[Framework-dependent Executable (FDE)](/dotnet/core/deploying/#framework-dependent-executables-fde)| <ul><li>publish†<ul><li>Views† MVC apps; if views aren't precompiled</li><li>Pages† MVC or Razor Pages apps, if pages aren't precompiled</li><li>wwwroot†</li><li>\*.dll files</li><li>{ASSEMBLY NAME}.deps.json</li><li>{ASSEMBLY NAME}.dll</li><li>{ASSEMBLY NAME}{.EXTENSION} *.exe* extension on Windows, no extension on macOS or Linux</li><li>{ASSEMBLY NAME}.pdb</li><li>{ASSEMBLY NAME}.Views.dll</li><li>{ASSEMBLY NAME}.Views.pdb</li><li>{ASSEMBLY NAME}.runtimeconfig.json</li><li>web.config (IIS deployments)</li><li>createdump ([Linux createdump utility](https://github.com/dotnet/coreclr/blob/master/Documentation/botr/xplat-minidump-generation.md#configurationpolicy))</li><li>\*.so (Linux shared object library)</li><li>\*.a (macOS archive)</li><li>\*.dylib (macOS dynamic library)</li></ul></li></ul> |
55
+
|[Framework-dependent Executable (FDE)](/dotnet/core/deploying/#framework-dependent-executables-fde)| <ul><li>publish†<ul><li>Views† MVC apps; if views aren't precompiled</li><li>Pages† MVC or Razor Pages apps, if pages aren't precompiled</li><li>wwwroot†</li><li>\*.dll files</li><li>{ASSEMBLY NAME}.deps.json</li><li>{ASSEMBLY NAME}.dll</li><li>{ASSEMBLY NAME}{.EXTENSION} .exe extension on Windows, no extension on macOS or Linux</li><li>{ASSEMBLY NAME}.pdb</li><li>{ASSEMBLY NAME}.Views.dll</li><li>{ASSEMBLY NAME}.Views.pdb</li><li>{ASSEMBLY NAME}.runtimeconfig.json</li><li>web.config (IIS deployments)</li><li>createdump ([Linux createdump utility](https://github.com/dotnet/coreclr/blob/master/Documentation/botr/xplat-minidump-generation.md#configurationpolicy))</li><li>\*.so (Linux shared object library)</li><li>\*.a (macOS archive)</li><li>\*.dylib (macOS dynamic library)</li></ul></li></ul> |
56
56
|[Self-contained Deployment (SCD)](/dotnet/core/deploying/#self-contained-deployments-scd)| <ul><li>publish†<ul><li>Views† MVC apps, if views aren't precompiled</li><li>Pages† MVC or Razor Pages apps, if pages aren't precompiled</li><li>wwwroot†</li><li>\*.dll files</li><li>{ASSEMBLY NAME}.deps.json</li><li>{ASSEMBLY NAME}.dll</li><li>{ASSEMBLY NAME}.exe</li><li>{ASSEMBLY NAME}.pdb</li><li>{ASSEMBLY NAME}.Views.dll</li><li>{ASSEMBLY NAME}.Views.pdb</li><li>{ASSEMBLY NAME}.runtimeconfig.json</li><li>web.config (IIS deployments)</li></ul></li></ul> |
57
-
-
57
+
58
58
†Indicates a directory
59
59
60
60
The *publish* directory represents the *content root path*, also called the *application base path*, of the deployment. Whatever name is given to the *publish* directory of the deployed app on the server, its location serves as the server's physical path to the hosted app.
0 commit comments