-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCommandQuery.SystemTextJson.csproj
More file actions
39 lines (32 loc) · 1.26 KB
/
CommandQuery.SystemTextJson.csproj
File metadata and controls
39 lines (32 loc) · 1.26 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>netstandard2.0</TargetFramework>
<Version>4.0.0</Version>
<PackageReleaseNotes>
- Bump System.Text.Json to 8.0.4
- Deserialize JSON with sane defaults
</PackageReleaseNotes>
<Authors>Henrik Lau Eriksson</Authors>
<Description>System.Text.Json extensions for CommandQuery</Description>
<PackageId>CommandQuery.SystemTextJson</PackageId>
<PackageProjectUrl>https://github.com/hlaueriksson/CommandQuery</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>CommandQuery;Command;Query;CQS;json</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\icon.png" Link="icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<Import Project="../../Analyzers.props" />
<ItemGroup>
<InternalsVisibleTo Include="CommandQuery.Benchmark" />
<InternalsVisibleTo Include="CommandQuery.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="10.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CommandQuery\CommandQuery.csproj" />
</ItemGroup>
</Project>