updating powered soft data services and .net core to 2.2.0

This commit is contained in:
David Lebee
2019-02-13 20:25:39 -06:00
parent 22563bdab9
commit 1d2b0e17b7
6 changed files with 31 additions and 17 deletions
@@ -1,5 +1,6 @@
using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json.Converters;
using PoweredSoft.Data;
using PoweredSoft.DynamicQuery.AspNetCore.Json;
using System;
using System.Collections.Generic;
@@ -11,6 +12,7 @@ namespace PoweredSoft.DynamicQuery.AspNetCore
{
public static IMvcBuilder AddPoweredSoftDynamicQuery(this IMvcBuilder builder)
{
builder.Services.AddPoweredSoftDataServices();
builder.Services.AddPoweredSoftDynamicQuery();
var serviceProvider = builder.Services.BuildServiceProvider();
builder.AddJsonOptions(o =>
@@ -21,8 +21,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Formatters.Json" Version="2.1.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Formatters.Json" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.2.0" />
</ItemGroup>
<ItemGroup>