Skip to content

Commit

Permalink
version 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Voronov committed Jul 23, 2021
1 parent 31e848e commit c991551
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions dependencies.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<ComponentModelAnnotations>5.0.0</ComponentModelAnnotations>
<CoreFxVersion>5.0.2</CoreFxVersion>
<CSharpVersion>9.0</CSharpVersion>
<EfCoreVersion>5.0.6</EfCoreVersion>
<EfCoreVersion>5.0.8</EfCoreVersion>
<FrameworkVersion>net48</FrameworkVersion>
<JsonNetVersion>13.0.1</JsonNetVersion>
<NetStandardVersion>net5.0</NetStandardVersion>
<NetCoreAppVersion>net5.0</NetCoreAppVersion>
<NetCoreVersion>5.0.0</NetCoreVersion>
<NpgsqlVersion>5.0.6</NpgsqlVersion>
<NpgsqlVersion>5.0.7</NpgsqlVersion>
<ODataLibVersion>7.9.0</ODataLibVersion>
<OdataToEntityVersion>2.7.0</OdataToEntityVersion>
<OdataToEntityVersion>2.8.0</OdataToEntityVersion>
<SystemInteractiveAsyncVersion>5.0.0</SystemInteractiveAsyncVersion>
<TestSdkVersion>16.10.0</TestSdkVersion>
<Version>$(OdataToEntityVersion)</Version>
Expand Down
4 changes: 2 additions & 2 deletions source/OdataToEntity.AspNetCore/OeBatchController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ protected virtual void OnBeforeInvokeController(OeDataContext dataContext, OData
}
private T GetService<T>()
{
return (T)base.HttpContext.RequestServices.GetService(typeof(T))
?? throw new InvalidOperationException("Type " + typeof(T).FullName + " not register in HttpContext.RequestServices");
return (T)(base.HttpContext.RequestServices.GetService(typeof(T))
?? throw new InvalidOperationException("Type " + typeof(T).FullName + " not register in HttpContext.RequestServices"));
}
protected virtual async Task<int> SaveChangesAsync(Object dataContext)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Humanizer.Core" Version="2.10.1" />
<PackageReference Include="Humanizer.Core" Version="2.11.10" />
<PackageReference Include="Microsoft.OData.Core" Version="$(ODataLibVersion)" />
<PackageReference Include="Microsoft.OData.Edm" Version="$(ODataLibVersion)" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="$(EfCoreVersion)" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="$(EfCoreVersion)" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(NpgsqlVersion)" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.0" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="$(EfCoreVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="$(NetCoreVersion)" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(NpgsqlVersion)" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.0" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.1" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVSVersion)" />
</ItemGroup>
Expand Down

0 comments on commit c991551

Please sign in to comment.