Skip to content

Commit 9c651e5

Browse files
committed
Update README.md
1 parent 833b21d commit 9c651e5

3 files changed

Lines changed: 14 additions & 4 deletions

File tree

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,19 +60,19 @@ framework.
6060
#### Package manager
6161

6262
```PowerShell
63-
Install-Package LitJson -Version 0.10.0
63+
Install-Package LitJson -Version 0.19.0
6464
```
6565

6666
#### .NET CLI
6767

6868
```PowerShell
69-
dotnet add package LitJson --version 0.10.0
69+
dotnet add package LitJson --version 0.19.0
7070
```
7171

7272
#### Paket CLI
7373

7474
```PowerShell
75-
paket add LitJson --version 0.10.0
75+
paket add LitJson --version 0.19.0
7676
```
7777

7878
Alternatively, just copy the whole tree of files under `src/LitJSON` to your
@@ -81,11 +81,14 @@ own project's source tree and integrate it with your development environment.
8181
#### Requirements
8282

8383
LitJSON currently targets and supports
84+
85+
* .NET 8
8486
* .NET 6
8587
* .NET Standard 2.1
8688
* .NET Standard 2.0
8789
* .NET Standard 1.5
88-
* .NET Framework 4.5 and above
90+
* .NET Framework 4.8
91+
* .NET Framework 4.5
8992
* .NET Framework 4.0
9093
* .NET Framework 3.5 (including SQLCLR, for which [WCOMAB/SqlServerSlackAPI](https://github.com/WCOMAB/SqlServerSlackAPI) is an example of)
9194
* .NET Framework 2.0

src/LitJson.Source/LitJSON.Source.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@
1818
<RepositoryUrl>https://github.com/LitJSON/litjson</RepositoryUrl>
1919
<RepositoryType>git</RepositoryType>
2020
<PackageTags>JSON;Serializer</PackageTags>
21+
<PackageReadmeFile>README.md</PackageReadmeFile>
2122
</PropertyGroup>
2223

2324
<ItemGroup>
2425
<PackageFile Include="../LitJson/**/*.cs" Exclude="../LitJson/obj/**;../LitJson/bin/**;../LitJson/AssemblyInfo.cs" PackagePath="$(ContentTargetFolders)\cs\any\LitJson\%(RelativeDir)%(Filename).g%(Extension)" />
2526
<None Include="../LitJson/litjson.png" Pack="true" PackagePath="" />
27+
<None Include="../../README.md" Pack="true" PackagePath="\"/>
2628
</ItemGroup>
2729

2830
<ItemGroup>

src/LitJson/LitJSON.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1111
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1212
<SourceLinkCreate Condition="'$(OS)' == 'Windows_NT'">true</SourceLinkCreate>
13+
<PackageReadmeFile>README.md</PackageReadmeFile>
1314
</PropertyGroup>
1415

1516
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
@@ -79,4 +80,8 @@ It's quick and lean, without external dependencies.</Description>
7980
</PackageReference>
8081
</ItemGroup>
8182

83+
<ItemGroup>
84+
<None Include="../../README.md" Pack="true" PackagePath="\"/>
85+
</ItemGroup>
86+
8287
</Project>

0 commit comments

Comments
 (0)