-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgoatquery-dotnet.csproj
More file actions
28 lines (23 loc) · 1.04 KB
/
goatquery-dotnet.csproj
File metadata and controls
28 lines (23 loc) · 1.04 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>goatquery-dotnet</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>GoatQuery</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/goatquery</PackageProjectUrl>
<RepositoryUrl>https://github.com/goatquery/goatquery-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>.NET Library to support paging, ordering, filtering, searching and selecting in REST APIs.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.3" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.6.7" />
</ItemGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>