-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathQueryKit.csproj
More file actions
30 lines (26 loc) · 1.39 KB
/
QueryKit.csproj
File metadata and controls
30 lines (26 loc) · 1.39 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>QueryKit</PackageId>
<PackageTags>QueryKit;Filter;Filtering;Sort;Sorting</PackageTags>
<Version>1.14.0</Version>
<Authors>Paul DeVito</Authors>
<Summary>QueryKit is a .NET library that makes it easier to query your data by providing a fluent and intuitive syntax for filtering and sorting.</Summary>
<Description>QueryKit is a .NET library that makes it easier to query your data by providing a fluent and intuitive syntax for filtering and sorting.</Description>
<RepositoryUrl>https://github.com/pdevito3/QueryKit</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<WarningsAsErrors>true</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="" Visible="False" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Sprache" Version="2.3.1" />
<PackageReference Include="Ardalis.SmartEnum" Version="8.2.0" />
</ItemGroup>
</Project>