Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric StJohn <ericstj@microsoft.com>2017-01-23 19:55:59 +0300
committerDan Moseley <danmose@microsoft.com>2017-01-23 19:55:59 +0300
commit3404609c5ac3cb11fd202f7d57cca2882a93c072 (patch)
tree910b00fbc6dcadaa6a30e0bddbc4041d2427cf5d /Documentation
parent552a8f626830aaea6775824d1177c02ae075764f (diff)
Updating dogfooding doc to 2.0 (#15405)
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/project-docs/dogfooding.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/Documentation/project-docs/dogfooding.md b/Documentation/project-docs/dogfooding.md
index 3e9d4c63a0..4a4a542e0d 100644
--- a/Documentation/project-docs/dogfooding.md
+++ b/Documentation/project-docs/dogfooding.md
@@ -48,22 +48,18 @@ as follows:
`dotnet.exe` would infer your current architecture but it currently doesn't)
2. Update package reference to match version selected above, as below
-*Note:* We're currently still using `netcoreapp1.2`. Eventually this will be
-renamed to `netcoreapp2.0`. So if `netcoreapp1.2` doesn't work, try
-`netcoreapp2.0`.
-
```xml
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<OutputType>Exe</OutputType>
- <TargetFramework>netcoreapp1.2</TargetFramework>
+ <TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
</PropertyGroup>
<!-- Make sure to use Update, not Include! -->
<ItemGroup>
- <PackageReference Update="Microsoft.NETCore.App" Version="1.2.0-beta-001285-00" />
+ <PackageReference Update="Microsoft.NETCore.App" Version="2.0.0-beta-001386-00" />
</ItemGroup>
</Project>