Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dotnet5 #442

Merged
merged 12 commits into from
Dec 25, 2020
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Neo" Version="3.0.0-CI01123" />
<PackageReference Include="Neo" Version="3.0.0-CI01125" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/RpcServer/RpcServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private async Task ProcessAsync(HttpContext context)
using StreamReader reader = new StreamReader(context.Request.Body);
try
{
request = JObject.Parse(reader.ReadToEnd());
request = JObject.Parse(await reader.ReadToEndAsync());
}
catch (FormatException) { }
}
Expand Down
6 changes: 1 addition & 5 deletions src/RpcServer/RpcServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,5 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.ResponseCompression" Version="2.2.0" />
shargon marked this conversation as resolved.
Show resolved Hide resolved
</ItemGroup>


</Project>