-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathListPool.Serializers.SystemTextJson.Converters.csproj
More file actions
36 lines (31 loc) · 1.31 KB
/
Copy pathListPool.Serializers.SystemTextJson.Converters.csproj
File metadata and controls
36 lines (31 loc) · 1.31 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Authors>Fausto David Suarez Rosario</Authors>
<Title>ListPool.Serializers.SystemTextJson.Converters</Title>
<PackageId>ListPool.Serializers.SystemTextJson.Converters</PackageId>
<Description>High-performance converters for ListPool.</Description>
<PackageTags>ASP.NET;List;System.Buffers;ArrayPool;ListPool;Performance;Span;System.Text.Json</PackageTags>
<RepositoryUrl>https://github.com/faustodavid/ListPool</RepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageVersion>0.1.0</PackageVersion>
<PackageReleaseNotes></PackageReleaseNotes>
<Copyright>Copyright © Fausto David Suarez Rosario 2020</Copyright>
<PackageProjectUrl>https://github.com/faustodavid/ListPool</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ListPool\ListPool.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="8.0.4"/>
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>