diff --git a/PoweredSoft.DynamicQuery.AspNetCore/PoweredSoft.DynamicQuery.AspNetCore.csproj b/PoweredSoft.DynamicQuery.AspNetCore/PoweredSoft.DynamicQuery.AspNetCore.csproj
index d9d9592..c97bd8c 100644
--- a/PoweredSoft.DynamicQuery.AspNetCore/PoweredSoft.DynamicQuery.AspNetCore.csproj
+++ b/PoweredSoft.DynamicQuery.AspNetCore/PoweredSoft.DynamicQuery.AspNetCore.csproj
@@ -9,7 +9,7 @@
https://github.com/PoweredSoft/DynamicQuery
github
powered,soft,dynamic,criteria,query,builder,asp,net,core
- 1.0.1
+ 1.0.2
https://secure.gravatar.com/avatar/4e32f73820c16718909a06c2927f1f8b?s=512&r=g&d=retro
diff --git a/PoweredSoft.DynamicQuery.AspNetCore/ServiceCollectionExtensions.cs b/PoweredSoft.DynamicQuery.AspNetCore/ServiceCollectionExtensions.cs
deleted file mode 100644
index 3391a61..0000000
--- a/PoweredSoft.DynamicQuery.AspNetCore/ServiceCollectionExtensions.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using Microsoft.Extensions.DependencyInjection;
-using PoweredSoft.DynamicQuery.Core;
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-namespace PoweredSoft.DynamicQuery.AspNetCore
-{
- public static class ServiceCollectionExtensions
- {
- public static IServiceCollection AddPoweredSoftDynamicQuery(this IServiceCollection services)
- {
- services.AddTransient();
- services.AddTransient();
- services.AddTransient();
- services.AddTransient();
- services.AddTransient();
- services.AddTransient();
- services.AddTransient();
- return services;
- }
- }
-}
diff --git a/PoweredSoft.DynamicQuery/PoweredSoft.DynamicQuery.csproj b/PoweredSoft.DynamicQuery/PoweredSoft.DynamicQuery.csproj
index d046c91..aad6feb 100644
--- a/PoweredSoft.DynamicQuery/PoweredSoft.DynamicQuery.csproj
+++ b/PoweredSoft.DynamicQuery/PoweredSoft.DynamicQuery.csproj
@@ -9,7 +9,7 @@
https://github.com/PoweredSoft/DynamicQuery
github
powered,soft,dynamic,criteria,query,builder
- 1.0.5
+ 1.0.6
https://secure.gravatar.com/avatar/4e32f73820c16718909a06c2927f1f8b?s=512&r=g&d=retro
@@ -18,4 +18,10 @@
+
+
+ ..\..\..\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.dependencyinjection.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+
+
+
diff --git a/PoweredSoft.DynamicQuery/ServiceCollectionExtensions.cs b/PoweredSoft.DynamicQuery/ServiceCollectionExtensions.cs
new file mode 100644
index 0000000..a1e98da
--- /dev/null
+++ b/PoweredSoft.DynamicQuery/ServiceCollectionExtensions.cs
@@ -0,0 +1,24 @@
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.DependencyInjection.Extensions;
+using PoweredSoft.DynamicQuery.Core;
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace PoweredSoft.DynamicQuery
+{
+ public static class ServiceCollectionExtensions
+ {
+ public static IServiceCollection AddPoweredSoftDynamicQuery(this IServiceCollection services)
+ {
+ services.TryAddTransient();
+ services.TryAddTransient();
+ services.TryAddTransient();
+ services.TryAddTransient();
+ services.TryAddTransient();
+ services.TryAddTransient();
+ services.TryAddTransient();
+ return services;
+ }
+ }
+}