-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpicojson.nuspec
28 lines (28 loc) · 1.7 KB
/
picojson.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>PicoJSON</id>
<version>1.3.0+1</version>
<authors>Kazuho Oku</authors>
<owners>Kazuho Oku; Cybozu Labs, Inc.</owners>
<projectUrl>https://github.com/kazuho/picojson/</projectUrl>
<description>PicoJSON is a tiny JSON parser / serializer for C++ with following properties: 1) header-file only; 2) no external dependencies (only uses standard C++ libraries); 3) STL-frendly (arrays are represented by using std::vector, objects are std::map); 4) provides both pull interface and streaming (event-based) interface.
This library is available under a 2-Clause BSD license. See the link to the license for details.
This NuGet Pkg was built with Azure Pipeline https://github.com/diogo-strube/build-nuget-picojson.
</description>
<releaseNotes>Make check is now synonym of Make test and operator= is now safe when part of LHS is being assigned, as well as exception-safe.</releaseNotes>
<licenseUrl>https://github.com/kazuho/picojson/blob/master/LICENSE</licenseUrl>
<copyright>PicoJSON Copyright © 2011-2015 Kazuho Oku</copyright>
<title>PicoJSON - a C++ JSON parser / serializer</title>
<summary>PicoJSON is a tiny STL-frendly and header-file only JSON parser / serializer for C++ that has no external dependencies.</summary>
<tags>json, parser, C++, header-only</tags>
<dependencies>
<group targetFramework="native0.0" />
</dependencies>
</metadata>
<files>
<file src="..\picojson\picojson.h" target="\lib\native\include\picojson\picojson.h" />
<file src="picojson.targets" target="\build\native\picojson.targets" />
<file src="..\picojson\README.mkdn" target="docs\" />
</files>
</package>