Skip to content

Commit 323789c

Browse files
committed
Fix indentation
1 parent 51b410c commit 323789c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/core/deploying/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ dotnet publish -c Release [-r <RID>] --self-contained false
151151

152152
- `--self-contained false`
153153

154-
This switch explicitly tells the .NET SDK to create a framework-dependent deployment.
154+
This switch explicitly tells the .NET SDK to create a framework-dependent deployment.
155155

156156
::: zone-end
157157

@@ -198,7 +198,7 @@ dotnet publish -c Release -p:UseAppHost=false
198198

199199
- `-p:UseAppHost=false`
200200

201-
This property disables the creation of a platform-specific executable, producing only the portable DLL.
201+
This property disables the creation of a platform-specific executable, producing only the portable DLL.
202202

203203
::: zone-end
204204

@@ -248,7 +248,7 @@ dotnet publish -c Release -r <RID> --self-contained true
248248

249249
- `--self-contained true`
250250

251-
This switch tells the .NET SDK to create an executable as a self-contained deployment (SCD).
251+
This switch tells the .NET SDK to create an executable as a self-contained deployment (SCD).
252252

253253
::: zone-end
254254

@@ -300,7 +300,7 @@ dotnet publish -c Release -r <RID> -p:PublishSingleFile=true
300300

301301
- `-p:PublishSingleFile=true`
302302

303-
This property bundles all application-dependent files into a single binary.
303+
This property bundles all application-dependent files into a single binary.
304304

305305
::: zone-end
306306

@@ -351,7 +351,7 @@ dotnet publish -c Release -r <RID> -p:PublishAot=true
351351

352352
- `-p:PublishAot=true`
353353

354-
This property enables Native AOT compilation, which compiles the app directly to native code.
354+
This property enables Native AOT compilation, which compiles the app directly to native code.
355355

356356
::: zone-end
357357

@@ -412,7 +412,7 @@ dotnet publish -c Release -r <RID> -p:PublishReadyToRun=true
412412

413413
- `-p:PublishReadyToRun=true`
414414

415-
This property enables ReadyToRun compilation, which improves startup performance by pre-compiling assemblies.
415+
This property enables ReadyToRun compilation, which improves startup performance by pre-compiling assemblies.
416416

417417
::: zone-end
418418

0 commit comments

Comments
 (0)