-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCrews.Web.JsonApiClient.csproj
More file actions
38 lines (33 loc) · 1.35 KB
/
Crews.Web.JsonApiClient.csproj
File metadata and controls
38 lines (33 loc) · 1.35 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Crews.Web.JsonApiClient</PackageId>
<PackageVersion>5.0.0</PackageVersion>
<Authors>Tommy Crews</Authors>
<Description>
A library containing serialization models and methods for the JSON:API specification.
</Description>
<PackageProjectUrl>https://github.com/twcrews/jsonapi-client</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/twcrews/jsonapi-client.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>JSON;REST;API;JSONAPI</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>
https://github.com/twcrews/jsonapi-client/blob/master/CHANGELOG.md
</PackageReleaseNotes>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Net.Http.Headers" Version="8.0.22" />
</ItemGroup>
</Project>