Skip to content

Commit c5de657

Browse files
2 parents 2fdf20e + 0aee0fe commit c5de657

4 files changed

Lines changed: 68 additions & 2 deletions

File tree

README.md

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
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 template can be found at https://github.com/Nethereum/Unity3dSampleTemplate.
6+
7+
_Note_ If you are targeting WegGl and want to use async / await you will require the WebGlThreadPatcher see example above.
8+
9+
## Package installation instructions
10+
11+
#### Install via Package Manager using OpenUpm
12+
13+
* open Edit/Project Settings/Package Manager
14+
* add a new Scoped Registry (or edit the existing OpenUPM entry)
15+
16+
**Name** package.openupm.com
17+
18+
**URL** https://package.openupm.com
19+
20+
**Scope(s)** com.nethereum.unity
21+
* click Save or Apply
22+
* open Window/Package Manager
23+
* click +
24+
* select Add package by name... or Add package from git URL...
25+
* paste com.nethereum.unity into name
26+
* paste 4.19.2 into version (or your preferred one)
27+
* click Add
28+
29+
30+
Alternatively, merge the snippet to Packages/manifest.json (https://docs.unity3d.com/Manual/upm-manifestPrj.html)
31+
```json
32+
{
33+
"scopedRegistries": [
34+
{
35+
"name": "package.openupm.com",
36+
"url": "https://package.openupm.com",
37+
"scopes": [
38+
"com.nethereum.unity"
39+
]
40+
}
41+
],
42+
"dependencies": {
43+
"com.nethereum.unity": "4.19.2"
44+
}
45+
}
46+
```
47+
48+
### Install using Git
449

550
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

Runtime/Nethereum.asmdef

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "Nethereum",
3+
"rootNamespace": "Nethereum",
4+
"references": [],
5+
"includePlatforms": [],
6+
"excludePlatforms": [],
7+
"allowUnsafeCode": false,
8+
"overrideReferences": false,
9+
"precompiledReferences": [],
10+
"autoReferenced": true,
11+
"defineConstraints": [],
12+
"versionDefines": [],
13+
"noEngineReferences": false
14+
}

Runtime/Nethereum.asmdef.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.nethereum.unity",
33
"displayName": "Nethereum",
4-
"version": "4.19.1",
4+
"version": "4.19.2",
55
"unity": "2018.1",
66
"description": "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 can be found at https://github.com/Nethereum/Unity3dSampleTemplate",
77
"changelogUrl": "https://github.com/Nethereum/Nethereum/releases",

0 commit comments

Comments
 (0)