Skip to content

Commit 15b95ee

Browse files
committed
Update README.md
1 parent 3406844 commit 15b95ee

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

Assets/_PackageRoot/Documentation~/README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,39 @@ SQLitePCLRaw.Startup.Setup();
4545
openupm add extensions.unity.bundle.efcore.sqlite
4646
```
4747

48+
## Manual Installation (alternative)
49+
50+
Modify `/Packages/manifest.json` file by adding requierd `depedencies` and `scopedRegistries`
51+
```
52+
{
53+
"dependencies": {
54+
"extensions.unity.bundle.efcore.sqlite": "0.0.4",
55+
"org.nuget.castle.core": "5.1.1",
56+
"org.nuget.sqlitepclraw.bundle_e_sqlite3": "2.1.10",
57+
"org.nuget.sqlitepclraw.provider.e_sqlite3": "2.1.10",
58+
"org.nuget.sqlitepclraw.provider.sqlite3": "2.1.10",
59+
"org.nuget.sqlitepclraw.lib.e_sqlite3": "2.1.10"
60+
},
61+
"scopedRegistries": [
62+
{
63+
"name": "package.openupm.com",
64+
"url": "https://package.openupm.com",
65+
"scopes": [
66+
"com.openupm",
67+
"extensions.unity.bundle.efcore.sqlite"
68+
]
69+
},
70+
{
71+
"name": "unitynuget-registry.azurewebsites.net",
72+
"url": "https://unitynuget-registry.azurewebsites.net",
73+
"scopes": [
74+
"org.nuget"
75+
]
76+
}
77+
]
78+
}
79+
```
80+
4881
# Alternative usage
4982

5083
## 1. Create `SQLiteContext` class

0 commit comments

Comments
 (0)