Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 3e55c1c

Browse files
committed
Update documentation for netcoreapp2.1
1 parent 0f03d11 commit 3e55c1c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Documentation/project-docs/dogfooding.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# How to get up and running on .NET Core 2.0
1+
# How to get up and running on .NET Core
22

33
This document provides the steps necessary to consume a nightly build of
4-
.NET Core 2.0 runtime and SDK.
4+
.NET Core runtime and SDK.
55

66
Please note that these steps are likely to change as we're simplifying
77
this experience. Make sure to consult this document often.
88

99
## Install prerequisites
1010

11-
1. Acquire the latest nightly .NET Core SDK 2.0 by downloading the zip or tarball listed in https://github.com/dotnet/cli/blob/master/README.md#installers-and-binaries (for example, https://dotnetcli.blob.core.windows.net/dotnet/Sdk/master/dotnet-sdk-latest-win-x64.zip ) into a new folder.
11+
1. Acquire the latest nightly .NET Core SDK by downloading the zip or tarball listed in https://github.com/dotnet/cli/blob/master/README.md#installers-and-binaries (for example, https://dotnetcli.blob.core.windows.net/dotnet/Sdk/master/dotnet-sdk-latest-win-x64.zip ) into a new folder.
1212

1313
2. By default, the dotnet CLI will use the globally installed SDK if it matches the major/minor version you request and has a higher revision. To force it to use the locally installed SDK, you must set an environment variable `DOTNET_MULTILEVEL_LOOKUP=0` in your shell. You can use `dotnet --info` to verify what version of the Shared Framework it is using.
1414

@@ -68,7 +68,7 @@ Rinse and repeat!
6868
## Advanced Scenario - Using a nightly build of Microsoft.NETCore.App
6969

7070
When using the above instructions, your application will run against the same
71-
.NET Core 2.0 runtime that comes with the SDK. That works fine to get up and
71+
.NET Core runtime that comes with the SDK. That works fine to get up and
7272
running quickly. However, there are times when you need to use a nightly build
7373
of Microsoft.NETCore.App which hasn't made its way into the SDK yet. To enable
7474
this, there are two options you can take.
@@ -110,14 +110,14 @@ make it self-contained
110110
<OutputType>Exe</OutputType>
111111
<TargetFramework>netcoreapp2.1</TargetFramework>
112112
<RuntimeFrameworkVersion>2.1.0-preview1-25825-07</RuntimeFrameworkVersion> <!-- modify build in this line -->
113-
<RuntimeIdentifier>win7-x64</RuntimeIdentifier> <!-- make self-contained -->
113+
<RuntimeIdentifier>win-x64</RuntimeIdentifier> <!-- make self-contained -->
114114
</PropertyGroup>
115115
```
116116

117117
```
118118
$ dotnet restore
119119
$ dotnet publish
120-
$ bin\Debug\netcoreapp2.1\win7-x64\publish\App.exe
120+
$ bin\Debug\netcoreapp2.1\win-x64\publish\App.exe
121121
```
122122

123123
## More Advanced Scenario - Using your local CoreFx build

0 commit comments

Comments
 (0)