Update 3.1 version numbers for RTM (#15977)

pull/15978/head
Scott Addie 2019-12-03 10:12:29 -06:00 committed by GitHub
parent afd103ad85
commit 504ad0c0df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ author: scottaddie
description: Learn how to migrate an ASP.NET Core 3.0 project to ASP.NET Core 3.1. description: Learn how to migrate an ASP.NET Core 3.0 project to ASP.NET Core 3.1.
ms.author: scaddie ms.author: scaddie
ms.custom: mvc ms.custom: mvc
ms.date: 11/26/2019 ms.date: 12/03/2019
uid: migration/30-to-31 uid: migration/30-to-31
--- ---
# Migrate from ASP.NET Core 3.0 to 3.1 # Migrate from ASP.NET Core 3.0 to 3.1
@ -37,7 +37,7 @@ If you rely upon a [global.json](/dotnet/core/tools/global-json) file to target
{ {
"sdk": { "sdk": {
- "version": "3.0.101" - "version": "3.0.101"
+ "version": "3.1.100-preview3-014645" + "version": "3.1.100"
} }
} }
``` ```
@ -65,8 +65,8 @@ In the project file, update each `Microsoft.AspNetCore.*` package reference's `V
<ItemGroup> <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0" /> - <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0" />
- <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.0.0" Condition="'$(Configuration)' == 'Debug'" /> - <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.0.0" Condition="'$(Configuration)' == 'Debug'" />
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.0-preview3.19555.2" /> + <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.0" />
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.0-preview3.19555.2" Condition="'$(Configuration)' == 'Debug'" /> + <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.0" Condition="'$(Configuration)' == 'Debug'" />
</ItemGroup> </ItemGroup>
``` ```