diff --git a/README.md b/README.md
index 86a1210..821c082 100644
--- a/README.md
+++ b/README.md
@@ -18,15 +18,18 @@ Full Version | NuGet
PoweredSoft.DynamicQuery | [](https://www.nuget.org/packages/PoweredSoft.DynamicQuery/) | ```PM> Install-Package PoweredSoft.DynamicQuery```
PoweredSoft.DynamicQuery.Core | [](https://www.nuget.org/packages/PoweredSoft.DynamicQuery.Core/) | ```PM> Install-Package PoweredSoft.DynamicQuery.Core```
PoweredSoft.DynamicQuery.AspNetCore | [](https://www.nuget.org/packages/PoweredSoft.DynamicQuery.AspNetCore/) | ```PM> Install-Package PoweredSoft.DynamicQuery.AspNetCore```
+PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson | [](https://www.nuget.org/packages/PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson/) | ```PM> Install-Package PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson```
## Using in ASP.NET Core
The package Asp.net core of dynamic query will help you start to use Dynamic Query faster in your web project.
-### How to configure during startup
+> For NET CORE 2.x look at v2.0 branch.
+
+### How to configure during startup (NET Core 3)
```csharp
-using PoweredSoft.DynamicQuery.AspNetCore;
+using PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson;
public class Startup
{
@@ -34,7 +37,7 @@ public class Startup
{
services
.AddMvc()
- .AddPoweredSoftDynamicQuery();
+ .AddPoweredSoftJsonNetDynamicQuery();
}
}