-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathNetJSON.nuspec
More file actions
42 lines (42 loc) · 2.1 KB
/
NetJSON.nuspec
File metadata and controls
42 lines (42 loc) · 2.1 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
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>NetJSON</id>
<title>NetJSON</title>
<tags>json json-serializer javascript JSON serializer binary</tags>
<version>1.4.5</version>
<authors>TJ Bakre</authors>
<description>Faster than Any Binary?</description>
<releaseNotes>
- Return null string for null objects in general
- Fixed issue with skipping serialization when json contains new line prior to closing curly
- Added support for .net 8.0 and 9.0
</releaseNotes>
<language>en-US</language>
<licenseUrl>https://github.com/rpgmaker/NetJSON/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>https://github.com/rpgmaker/NetJSON</projectUrl>
<iconUrl>http://iomegatrix.com/Pictures/logo.jpg</iconUrl>
<dependencies>
<group targetFramework="netstandard1.6">
<dependency id="Microsoft.Extensions.DependencyModel" version="1.0.0" />
<dependency id="NETStandard.Library" version="1.6.0" />
<dependency id="System.Dynamic.Runtime" version="4.0.11" />
<dependency id="System.Reflection" version="4.1.0" />
<dependency id="System.Reflection.Emit" version="4.0.1" />
<dependency id="System.Reflection.Emit.Lightweight" version="4.0.1" />
<dependency id="System.Reflection.TypeExtensions" version="4.1.0" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="NETStandard.Library" version="2.0.3" />
<dependency id="System.Reflection" version="4.3.0" />
<dependency id="System.Reflection.Emit" version="4.3.0" />
<dependency id="System.Reflection.Emit.Lightweight" version="4.3.0" />
<dependency id="System.Reflection.Extensions" version="4.3.0" />
<dependency id="System.Reflection.Emit.ILGeneration" version="4.3.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="*\**" target="\" exclude="obj\**\*.*;**\*.csproj"/>
</files>
</package>