mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 05:22:57 +01:00
26 lines
1.4 KiB
XML
26 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Version>2.2</Version>
|
|
<Description>Sieve is a simple, clean, and extensible framework for .NET Core that adds sorting, filtering, and pagination functionality out of the box. Most common use case would be for serving ASP.NET Core GET queries. Documentation available on GitHub: https://github.com/Biarity/Sieve/
|
|
</Description>
|
|
<Copyright>Copyright 2018</Copyright>
|
|
<PackageLicenseUrl>https://github.com/Biarity/Sieve/blob/master/LICENSE</PackageLicenseUrl>
|
|
<PackageProjectUrl>https://github.com/Biarity/Sieve</PackageProjectUrl>
|
|
<PackageIconUrl>https://emojipedia-us.s3.amazonaws.com/thumbs/240/twitter/120/alembic_2697.png</PackageIconUrl>
|
|
<RepositoryUrl></RepositoryUrl>
|
|
<PackageReleaseNotes>Added OR logic for value fields, allowed escaping special characters</PackageReleaseNotes>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<Authors>Biarity</Authors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="2.0.0" />
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="4.4.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|