Skip to content

Commit 31c17d2

Browse files
authored
Update JSON Patch package installation command (#36870)
Removed the '--prerelease' flag from the package installation command.
1 parent fa4a2fa commit 31c17d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aspnetcore/web-api/jsonpatch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ JSON Patch support in ASP.NET Core web API is based on <xref:System.Text.Json> s
5454
To enable JSON Patch support with <xref:System.Text.Json>, install the [`Microsoft.AspNetCore.JsonPatch.SystemTextJson`](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch.SystemTextJson) NuGet package.
5555

5656
```dotnetcli
57-
dotnet add package Microsoft.AspNetCore.JsonPatch.SystemTextJson --prerelease
57+
dotnet add package Microsoft.AspNetCore.JsonPatch.SystemTextJson
5858
```
5959

6060
This package provides a <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument%601> class to represent a JSON Patch document for objects of type `T` and custom logic for serializing and deserializing JSON Patch documents using <xref:System.Text.Json>. The key method of the <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument%601> class is <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument.ApplyTo(System.Object)>, which applies the patch operations to a target object of type `T`.

0 commit comments

Comments
 (0)