|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.1;net461</TargetFrameworks> |
| 4 | + <TargetFrameworks>netcoreapp3.1</TargetFrameworks> |
5 | 5 | <RootNamespace>AutoMapper.AspNet.OData</RootNamespace> |
6 | 6 | <PackageId>AutoMapper.AspNetCore.OData.EF6</PackageId> |
7 | 7 | <Description>Creates LINQ expressions from ODataQueryOptions and executes the query.</Description> |
8 | 8 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
9 | | - <PackageReleaseNotes>Removing Task.Run form non-async calls. CancellationToken support. Restricting page size Server-side.</PackageReleaseNotes> |
| 9 | + <PackageReleaseNotes>Supporting Microsoft.AspNetCore.OData v8.0.0-rc.</PackageReleaseNotes> |
10 | 10 | <PackageTags>linq expressions odata efcore</PackageTags> |
11 | 11 | <PackageIconUrl>https://s3.amazonaws.com/automapper/icon.png</PackageIconUrl> |
12 | 12 | <RepositoryUrl>https://github.com/AutoMapper/AutoMapper.Extensions.OData</RepositoryUrl> |
|
17 | 17 | <MinVerTagPrefix>v</MinVerTagPrefix> |
18 | 18 | </PropertyGroup> |
19 | 19 |
|
| 20 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.1|AnyCPU'"> |
| 21 | + <DefineConstants>TRACE;ASPNETCORE</DefineConstants> |
| 22 | + </PropertyGroup> |
| 23 | + |
| 24 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.1|AnyCPU'"> |
| 25 | + <DefineConstants>TRACE;ASPNETCORE</DefineConstants> |
| 26 | + </PropertyGroup> |
| 27 | + |
| 28 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp3.1|AnyCPU'"> |
| 29 | + <DefineConstants>TRACE;ASPNETCORE</DefineConstants> |
| 30 | + </PropertyGroup> |
| 31 | + |
| 32 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp3.1|AnyCPU'"> |
| 33 | + <DefineConstants>TRACE;ASPNETCORE</DefineConstants> |
| 34 | + </PropertyGroup> |
| 35 | + |
20 | 36 | <ItemGroup> |
21 | 37 | <Compile Include="..\AutoMapper.AspNetCore.OData.EFCore\AsyncSettings.cs" Link="AsyncSettings.cs" /> |
22 | 38 | <Compile Include="..\AutoMapper.AspNetCore.OData.EFCore\Constants.cs" Link="Constants.cs" /> |
|
45 | 61 | <PackageReference Include="AutoMapper.Extensions.ExpressionMapping" Version="[4.1.1,5.0.0)" /> |
46 | 62 | <PackageReference Include="EntityFramework" Version="6.3.0" /> |
47 | 63 | <PackageReference Include="LogicBuilder.Expressions.Utils" Version="[4.1.1,5.0.0)" /> |
48 | | - <PackageReference Include="Microsoft.AspNetCore.OData" Version="7.4.1" /> |
| 64 | + <PackageReference Include="Microsoft.AspNetCore.OData" Version="8.0.0-rc" /> |
49 | 65 | <PackageReference Include="MinVer" Version="2.3.0"> |
50 | 66 | <PrivateAssets>all</PrivateAssets> |
51 | 67 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
52 | 68 | </PackageReference> |
53 | 69 | </ItemGroup> |
54 | 70 |
|
| 71 | + <ItemGroup> |
| 72 | + <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
| 73 | + </ItemGroup> |
| 74 | + |
55 | 75 | <ItemGroup> |
56 | 76 | <Folder Include="Visitors\" /> |
57 | 77 | <Folder Include="Properties\" /> |
|
0 commit comments