Skip to content

Commit 236b672

Browse files
committed
Update JsonDocumentPath.csproj
Changed to use netstandard 2.1
1 parent 547c42b commit 236b672

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed
Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
<PackageVersion>1.0.1-beta</PackageVersion>
6-
<AssemblyVersion>1.0.0.1</AssemblyVersion>
7-
<FileVersion>1.0.0.1</FileVersion>
4+
<TargetFramework>netstandard2.1</TargetFramework>
5+
<PackageVersion>1.0.2</PackageVersion>
6+
<AssemblyVersion>1.0.0.2</AssemblyVersion>
7+
<FileVersion>1.0.0.2</FileVersion>
88
<Authors>Adanies Zambrano</Authors>
99
<Product>JsonDocumentPath</Product>
1010
<Description>JsonDocumentPath is a class library to extract values from JSON with single line expressions</Description>
1111
<Copyright>Copyright © Adanies Zambrano 2020</Copyright>
12-
<Summary>JsonDocumentPath is a class library to extract values from JSON (JsonDocument) with single line expressions</Summary>
12+
<Summary>JsonDocumentPath is a class library to extract values from JSON (JsonDocument) with single line expressions. The code is a port of the jsonpath parser in Newtonsoft.Json.</Summary>
1313
<NeutralLanguage>en-US</NeutralLanguage>
1414
<Title>JsonDocumentPath</Title>
1515
<PackageTags>JsonDocumentPath, Json, JsonDocument, JsonPath</PackageTags>
1616
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1717
<RepositoryUrl>https://github.com/azambrano/JsonDocumentPath</RepositoryUrl>
1818
</PropertyGroup>
1919

20+
<ItemGroup>
21+
<PackageReference Include="System.Text.Json" Version="4.7.2" />
22+
</ItemGroup>
23+
2024
</Project>

0 commit comments

Comments
 (0)