Skip to content

Commit 6e8006a

Browse files
author
Igor Pchelko
committed
Packages are updated to the latest AspNetCore version.
In latest version of AspNetCore the IHttpResponseStreamWriterFactory was moved to Microsoft.AspNetCore.Mvc.Infrastructure namespace. Signed-off-by: Igor Pchelko <igor.pchelko@novility.com>
1 parent ff3abea commit 6e8006a

5 files changed

Lines changed: 10 additions & 9 deletions

File tree

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Microsoft.AspNetCore" Version="2.0.1" />
16-
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.1" />
15+
<PackageReference Include="Microsoft.AspNetCore" Version="2.1.2" />
16+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.1" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

src/PartialResponse.AspNetCore.Mvc.Formatters.Json/Internal/PartialJsonResultExecutor.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using System.Threading.Tasks;
77
using Microsoft.AspNetCore.Http;
88
using Microsoft.AspNetCore.Mvc;
9+
using Microsoft.AspNetCore.Mvc.Infrastructure;
910
using Microsoft.AspNetCore.Mvc.Internal;
1011
using Microsoft.Extensions.Logging;
1112
using Microsoft.Extensions.Options;

src/PartialResponse.AspNetCore.Mvc.Formatters.Json/PartialResponse.AspNetCore.Mvc.Formatters.Json.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
</PropertyGroup>
2929

3030
<ItemGroup>
31-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.0.0" />
32-
<PackageReference Include="Newtonsoft.Json" Version="10.0.1" />
31+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.1.1" />
32+
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
3333
<PackageReference Include="PartialResponse.Core" Version="2.0.0" />
3434
</ItemGroup>
3535

test/PartialResponse.AspNetCore.Mvc.Formatters.Json.Tests/PartialJsonResultExecutorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading.Tasks;
77
using Microsoft.AspNetCore.Http;
88
using Microsoft.AspNetCore.Mvc;
9-
using Microsoft.AspNetCore.Mvc.Internal;
9+
using Microsoft.AspNetCore.Mvc.Infrastructure;
1010
using Microsoft.Extensions.Logging;
1111
using Microsoft.Extensions.Options;
1212
using Moq;

test/PartialResponse.AspNetCore.Mvc.Formatters.Json.Tests/PartialResponse.AspNetCore.Mvc.Formatters.Json.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
16-
<PackageReference Include="Moq" Version="4.8.1" />
17-
<PackageReference Include="xunit" Version="2.3.1" />
18-
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
15+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
16+
<PackageReference Include="Moq" Version="4.9.0" />
17+
<PackageReference Include="xunit" Version="2.4.0" />
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

0 commit comments

Comments
 (0)