Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PixelWizards/com.newtonsoft.json
Unity package manager setup for Newtonsoft's JSON library
https://github.com/PixelWizards/com.newtonsoft.json
c-sharp json package-manager unity
Last synced: 3 months ago
JSON representation
Unity package manager setup for Newtonsoft's JSON library
- Host: GitHub
- URL: https://github.com/PixelWizards/com.newtonsoft.json
- Owner: PixelWizards
- License: mit
- Created: 2019-04-14T21:59:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-10T08:22:07.000Z (over 4 years ago)
- Last Synced: 2024-04-23T02:40:53.852Z (7 months ago)
- Topics: c-sharp, json, package-manager, unity
- Size: 533 KB
- Stars: 29
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# com.newtonsoft.json
Unity package manager setup for Newtonsoft's JSON library (https://www.newtonsoft.com/json)For more information about using Json.net in your Unity project, check this page:
https://gist.github.com/gekidoslair/121237697a05d87fa40ede58030f4394
# UPDATE
Unity has provided an official distribution of Newtonsoft's JSON library via Packman. To use, simply add the following to your package.json:
```"com.unity.nuget.newtonsoft-json": "1.1.2"```
In the Dependencies section of your project's manifest.json.
Note: to reference the newtonsoft library from another assembly (asmdef), you must check
'override references' on the asmdef and this will provide a dropdown with a list of the
available binary assemblies in the project.# Version
This package includes the DLL version of JSON.Net
Version: 12.0.1.22727
# Add to your project
Open the manifest.json for your project and add the following entry to your list of dependencies
```"com.newtonsoft.json": "https://github.com/PixelWizards/com.newtonsoft.json.git",```
For example:
```{
"dependencies": {
"com.newtonsoft.json": "https://github.com/PixelWizards/com.newtonsoft.json.git",
"com.unity.ads": "2.0.8",
"com.unity.analytics": "3.2.2",
"com.unity.collab-proxy": "1.2.15",
...
}
}```