-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJsonApiToolkit.csproj
More file actions
39 lines (37 loc) · 1.83 KB
/
JsonApiToolkit.csproj
File metadata and controls
39 lines (37 loc) · 1.83 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
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Package metadata -->
<PackageId>Intility.JsonApiToolkit</PackageId>
<Title>JsonApiToolkit</Title>
<Version>2.1.4</Version>
<Authors>Intility</Authors>
<Company>Intility</Company>
<Copyright>Copyright (c) Intility</Copyright>
<Description>Build JSON:API endpoints in ASP.NET Core. Translates JSON:API query parameters (filter, sort, include, fields, page) into typed EF Core queries and returns spec-compliant response documents.</Description>
<PackageTags>jsonapi;json-api;aspnetcore;efcore;rest;api;dotnet</PackageTags>
<RepositoryUrl>https://github.com/intility/json-api-toolkit</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/intility/json-api-toolkit</PackageProjectUrl>
<PackageIcon>intility-logo.png</PackageIcon>
<PackageReadmeFile>README.nuget.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Generate XML documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="JsonApiToolkit.Tests"/>
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
<PackageReference Include="Intility.Logging.AspNetCore" Version="3.1.4"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.8"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.8"/>
</ItemGroup>
<ItemGroup>
<None Include="..\README.nuget.md" Pack="true" PackagePath="\"/>
<None Include="..\assets\intility-logo.png" Pack="true" Visible="false" PackagePath="\"/>
</ItemGroup>
</Project>