-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathActivout.RestClient.Newtonsoft.Json.csproj
More file actions
32 lines (27 loc) · 1.19 KB
/
Copy pathActivout.RestClient.Newtonsoft.Json.csproj
File metadata and controls
32 lines (27 loc) · 1.19 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>CS0618;CS0619</WarningsNotAsErrors>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Title>Activout Rest Client - Newtonsoft.Json Support</Title>
<Description>Newtonsoft.Json Support for Activout.RestClient.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/twogood/Activout.RestClient</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/twogood/Activout.RestClient.git</RepositoryUrl>
<PackageTags>rest;json;newtonsoft.json;serialization;dotnet</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Activout.RestClient\Activout.RestClient.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>