Skip to content

Commit 792246c

Browse files
Update README.md
1 parent 2640eeb commit 792246c

1 file changed

Lines changed: 44 additions & 1 deletion

File tree

README.md

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
# Nethereum.Unity
2-
Nethereum 472 AOT runtime dlls, please check Nethereum releases for more information, extra components, or other versions (net461, net35, netstandard) https://github.com/Nethereum/Nethereum/releases, example of usage can be found at https://github.com/Nethereum/Unity3dSampleTemplate.
32

3+
Nethereum 472 / Netstandard AOT runtime dlls, please check Nethereum releases for more information, extra components, or other versions (net461, net35, netstandard) https://github.com/Nethereum/Nethereum/releases.
4+
5+
Example of usage can be found at https://github.com/Nethereum/Unity3dSampleTemplate.
6+
7+
## Package installation instructions
8+
9+
#### Install via Package Manager using OpenUpm
10+
11+
* nopen Edit/Project Settings/Package Manager
12+
* add a new Scoped Registry (or edit the existing OpenUPM entry)
13+
14+
**Name** package.openupm.com
15+
16+
**URL** https://package.openupm.com
17+
18+
**Scope(s)** com.nethereum.unity
19+
* click Save or Apply
20+
* open Window/Package Manager
21+
* click +
22+
* select Add package by name... or Add package from git URL...
23+
* paste com.nethereum.unity into name
24+
* paste 4.19.2 into version (or your preferred one)
25+
* click Add
26+
27+
28+
Alternatively, merge the snippet to Packages/manifest.json (https://docs.unity3d.com/Manual/upm-manifestPrj.html)
29+
```json
30+
{
31+
"scopedRegistries": [
32+
{
33+
"name": "package.openupm.com",
34+
"url": "https://package.openupm.com",
35+
"scopes": [
36+
"com.nethereum.unity"
37+
]
38+
}
39+
],
40+
"dependencies": {
41+
"com.nethereum.unity": "4.19.2"
42+
}
43+
}
44+
```
45+
46+
### Install using Git
447

548
To add this package as a dependency just use the github url, more info can be found here: https://docs.unity3d.com/Manual/upm-git.html

0 commit comments

Comments
 (0)