Skip to content

Commit 02ff71e

Browse files
authored
fixing some snippet issues (dotnet#1973)
1 parent 7cb3ed9 commit 02ff71e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/core/deploying/deploy-with-cli.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Deploying a framework-dependent deployment with one or more third-party dependen
7676
<ItemGroup>
7777
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
7878
</ItemGroup>
79-
```
79+
```
8080

8181
1. If you haven't already, download the NuGet package containing the third-party dependency. To download the package, execute the `dotnet restore` command after adding the dependency. Because the dependency is resolved out of the local NuGet cache at publish time, it must be available on your system.
8282

@@ -106,11 +106,11 @@ Deploying a self-contained deployment without third-party dependencies involves
106106

107107
For example, the following `<PropertyGroup>` section indicates that the app runs on 64-bit Windows 10 operating systems and the 64-bit OS X Version 10.11 operating system.
108108

109-
```xml
110-
<PropertyGroup>
111-
<RuntimeIdentifiers>win10-x64;osx.10.11-x64</RuntimeIdentifiers>
112-
</PropertyGroup>
113-
```
109+
```xml
110+
<PropertyGroup>
111+
<RuntimeIdentifiers>win10-x64;osx.10.11-x64</RuntimeIdentifiers>
112+
</PropertyGroup>
113+
```
114114

115115
Note that the `<RuntimeIdentifier>` element can appear in any `<PropertyGroup>` in your *csproj* file. A complete sample *csproj* file appears later in this section.
116116

@@ -252,4 +252,4 @@ The following is the complete *csproj* file for this project.
252252
# See also
253253

254254
[.NET Core Application Deployment](index.md)
255-
[.NET Core Runtime IDentifier (RID) catalog](../rid-catalog.md)
255+
[.NET Core Runtime IDentifier (RID) catalog](../rid-catalog.md)

0 commit comments

Comments
 (0)