File tree Expand file tree Collapse file tree 6 files changed +26
-16
lines changed
AutoMapper.AspNetCore.OData.EF6
AutoMapper.AspNetCore.OData.EFCore Expand file tree Collapse file tree 6 files changed +26
-16
lines changed Original file line number Diff line number Diff line change 66 <PackageId >AutoMapper.AspNetCore.OData.EF6</PackageId >
77 <Description >Creates LINQ expressions from ODataQueryOptions and executes the query.</Description >
88 <PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
9- <PackageReleaseNotes >Supporting $search .</PackageReleaseNotes >
9+ <PackageReleaseNotes >Supporting $skip and $top without $orderby .</PackageReleaseNotes >
1010 <PackageTags >linq expressions odata efcore</PackageTags >
1111 <PackageIcon >icon.png</PackageIcon >
1212 <RepositoryUrl >https://github.com/AutoMapper/AutoMapper.Extensions.OData</RepositoryUrl >
Original file line number Diff line number Diff line change 66 <PackageId >AutoMapper.AspNetCore.OData.EFCore</PackageId >
77 <Description >Creates LINQ expressions from ODataQueryOptions and executes the query.</Description >
88 <PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
9- <PackageReleaseNotes >Supporting $search .</PackageReleaseNotes >
9+ <PackageReleaseNotes >Supporting $skip and $top without $orderby .</PackageReleaseNotes >
1010 <PackageTags >linq expressions odata efcore</PackageTags >
1111 <PackageIcon >icon.png</PackageIcon >
1212 <RepositoryUrl >https://github.com/AutoMapper/AutoMapper.Extensions.OData</RepositoryUrl >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
3- <PropertyGroup >
4- < TargetFramework >netstandard2.0</ TargetFramework >
5- </PropertyGroup >
3+ <PropertyGroup >
4+ < TargetFrameworks >netcoreapp3.1;net5.0;net6.0</ TargetFrameworks >
5+ </PropertyGroup >
66
7- <ItemGroup >
8- <PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 3.1.0" />
9- </ItemGroup >
7+ <ItemGroup Condition =" '$(TargetFramework)' == 'netcoreapp3.1' " >
8+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 3.1.0" />
9+ </ItemGroup >
10+
11+ <ItemGroup Condition =" '$(TargetFramework)' == 'net5.0' " >
12+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 5.0.0" />
13+ </ItemGroup >
14+
15+ <ItemGroup Condition =" '$(TargetFramework)' == 'net6.0' " >
16+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 6.0.0" />
17+ </ItemGroup >
1018
1119</Project >
Original file line number Diff line number Diff line change 66 </PropertyGroup >
77
88 <ItemGroup >
9+ <PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 3.1.0" />
910 <PackageReference Include =" Microsoft.Extensions.Configuration.FileExtensions" Version =" 3.1.0" />
1011 <PackageReference Include =" Microsoft.Extensions.Configuration.Json" Version =" 3.1.0" />
1112 </ItemGroup >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22
33 <PropertyGroup >
4- <TargetFramework >net5 .0</TargetFramework >
4+ <TargetFramework >net6 .0</TargetFramework >
55 </PropertyGroup >
66
77 <ItemGroup >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22
3- <PropertyGroup >
4- <TargetFramework >netcoreapp3.1 </TargetFramework >
5- </PropertyGroup >
3+ <PropertyGroup >
4+ <TargetFramework >net6.0 </TargetFramework >
5+ </PropertyGroup >
66
7- <ItemGroup >
8- <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 3.1.0" />
9- <PackageReference Include =" Microsoft.VisualStudio.Web.CodeGeneration.Design" Version =" 3.1.0" />
10- </ItemGroup >
7+ <ItemGroup >
8+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 6.0.2" />
9+ <PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 6.0.2" />
10+ <PackageReference Include =" Microsoft.VisualStudio.Web.CodeGeneration.Design" Version =" 6.0.2" />
11+ </ItemGroup >
1112
1213 <ItemGroup >
1314 <ProjectReference Include =" ..\AutoMapper.AspNetCore.OData.EFCore\AutoMapper.AspNetCore.OData.EFCore.csproj" />
You can’t perform that action at this time.
0 commit comments