replace .net6 rc with .net 6 (#23807)

pull/23812/head
behrooz bozorg chami 2021-11-09 13:57:16 +03:30 committed by GitHub
parent a52e42a2f6
commit d69aa4dccd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ If you rely upon a [`global.json`](/dotnet/core/tools/global-json) file to targe
{
"sdk": {
- "version": "5.0.100"
+ "version": "6.0.100-rc.2.21505.57"
+ "version": "6.0.100"
}
}
```
@ -66,8 +66,8 @@ In the project file, update each [`Microsoft.AspNetCore.*`](https://www.nuget.or
<ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="5.0.3" />
- <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="5.0.0" />
+ <PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="6.0.0-rc.2.*" />
+ <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="6.0.0-rc.2.*" />
+ <PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="6.0.0" />
+ <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="6.0.0" />
</ItemGroup>
```