-
Notifications
You must be signed in to change notification settings - Fork 131
Installation via Git in UPM
Unity Package Manager, or UPM for short, is Unity's new solution for managing packages so they don't need to be included inside the /Assets folder.
Have a look at the Unity Package Manager docs for more info.
This guide shows how to install Newtonsoft.Json-for-Unity using Git via UPM.
-
Requires Unity Editor
2018.1
or above, as UPM was first shipped with2018.1
. -
Git installed on your machine. See download instructions here: https://git-scm.com/downloads
-
Find your version in the list of tags: https://github.com/jilleJr/Newtonsoft.Json-for-Unity/tags
-
Open
<project>/Packages/manifest.json
, add the package in the list of dependencies, replacing the tag after the hash sign (#
) with your version of choice.
À la:
{
"dependencies": {
"jillejr.newtonsoft.json-for-unity": "https://github.com/jilleJr/Newtonsoft.Json-for-Unity.git#12.0.302",
/* ... rest of Unity packages ... */
}
}
Done!
-
Find which version you want to upgrade to in the list of tags: https://github.com/jilleJr/Newtonsoft.Json-for-Unity/tags
-
Open
<project>/Packages/manifest.json
, change the version of the package in the list of dependencies by changing the value after the hash sign. For example, from#12.0.101
to#12.0.301
. -
Then also remove the version lock for the package to force UPM to fetch the new version of the package.
Sample changeset:
@@ Packages/manifest.json @@
{
"dependencies": {
- "jillejr.newtonsoft.json-for-unity": "https://github.com/jilleJr/Newtonsoft.Json-for-Unity.git#12.0.101",
+ "jillejr.newtonsoft.json-for-unity": "https://github.com/jilleJr/Newtonsoft.Json-for-Unity.git#12.0.301",
/* ... rest of Unity packages ... */
},
"lock": {
- "jillejr.newtonsoft.json-for-unity": {
- "hash": "9b9871e395be2f53e53f830af9ab586ee6e1ee3d",
- "revision": "12.0.101"
- }
}
}
new!
Unity's package is now officially ready for public use: Install official UPM package
This package is licensed under The MIT License (MIT)
Copyright © 2019 Kalle Jillheden (jilleJr)
https://github.com/jilleJr/Newtonsoft.Json
See full copyrights in LICENSE.md inside repository
About- Home
-
Install Newtonsoft.Json
Deprecated:
-
Install converters for Unity