-
Notifications
You must be signed in to change notification settings - Fork 0
/
Paginator.EntityFrameworkCore.csproj
44 lines (39 loc) · 1.64 KB
/
Paginator.EntityFrameworkCore.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Timothy Macharia</Authors>
<Company>Neon Clouds</Company>
<Product>Paginator.EntityFrameworkCore</Product>
<Title>Paginator.EntityFrameworkCore</Title>
<PackageProjectUrl>https://github.com/tmacharia/paginator.efcore</PackageProjectUrl>
<Copyright>© Neon Clouds, 2021</Copyright>
<RepositoryUrl>https://github.com/tmacharia/paginator.efcore</RepositoryUrl>
<PackageTags>linq, pagination, paginator, paging, efcore</PackageTags>
<PackageId>Paginator.EntityFrameworkCore</PackageId>
<Version>3.1.16</Version>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseUrl></PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>
Asynchronous & Synchronous pagination of queries to your data store using EntityFrameworkCore. With the help of some simple to use extension methods, querying portions/chunks of data just gets easier.
</Description>
</PropertyGroup>
<ItemGroup>
<Compile Remove="tests\**" />
<EmbeddedResource Remove="tests\**" />
<None Remove="tests\**" />
</ItemGroup>
<ItemGroup>
<None Include=".\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.16" />
</ItemGroup>
</Project>