Skip to content

Commit dd1295c

Browse files
committed
Update README and manifest files to include new package dependencies and version bump to 0.0.9
1 parent b849ab8 commit dd1295c

File tree

5 files changed

+102
-6
lines changed

5 files changed

+102
-6
lines changed

Assets/_PackageRoot/Documentation~/README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,31 @@ Then use EFCore as usual.
4444
- Run the command
4545

4646
``` CLI
47-
openupm add extensions.unity.bundle.efcore.sqlite
47+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
48+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
49+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
50+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
51+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
52+
53+
```
54+
55+
- Modify `/Packages/manifest.json` file by adding required `dependencies` and `scopedRegistries`
56+
57+
```json
58+
{
59+
"dependencies": {
60+
"extensions.unity.bundle.efcore.sqlite": "0.0.7"
61+
},
62+
"scopedRegistries": [
63+
{
64+
"name": "package.openupm.com",
65+
"url": "https://package.openupm.com",
66+
"scopes": [
67+
"com.openupm"
68+
]
69+
}
70+
]
71+
}
4872
```
4973

5074
# Alternative usage

Assets/_PackageRoot/README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,31 @@ Then use EFCore as usual.
4444
- Run the command
4545

4646
``` CLI
47-
openupm add extensions.unity.bundle.efcore.sqlite
47+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
48+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
49+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
50+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
51+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
52+
53+
```
54+
55+
- Modify `/Packages/manifest.json` file by adding required `dependencies` and `scopedRegistries`
56+
57+
```json
58+
{
59+
"dependencies": {
60+
"extensions.unity.bundle.efcore.sqlite": "0.0.7"
61+
},
62+
"scopedRegistries": [
63+
{
64+
"name": "package.openupm.com",
65+
"url": "https://package.openupm.com",
66+
"scopes": [
67+
"com.openupm"
68+
]
69+
}
70+
]
71+
}
4872
```
4973

5074
# Alternative usage
Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
11
{
2-
"name": "EFCore.SQLite.Bundle"
3-
}
2+
"name": "EFCore.SQLite.Bundle",
3+
"rootNamespace": "EFCoreSQLiteBundle",
4+
"references": [],
5+
"includePlatforms": [],
6+
"excludePlatforms": [],
7+
"allowUnsafeCode": false,
8+
"overrideReferences": true,
9+
"precompiledReferences": [
10+
"Castle.Core.dll",
11+
"Microsoft.EntityFrameworkCore.dll",
12+
"Microsoft.EntityFrameworkCore.Abstractions.dll",
13+
"Microsoft.EntityFrameworkCore.Relational.dll",
14+
"Microsoft.EntityFrameworkCore.Sqlite.dll",
15+
"SQLitePCLRaw.batteries_v2.dll",
16+
"SQLitePCLRaw.core.dll",
17+
"SQLitePCLRaw.provider.e_sqlite3.dll",
18+
"SQLitePCLRaw.provider.sqlite3.dll"
19+
],
20+
"autoReferenced": true,
21+
"defineConstraints": [],
22+
"versionDefines": [],
23+
"noEngineReferences": false
24+
}

Assets/_PackageRoot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"email": "[email protected]",
77
"url": "https://github.com/IvanMurzak"
88
},
9-
"version": "0.0.8",
9+
"version": "0.0.9",
1010
"unity": "2019.2",
1111
"description": "Bundle project that includes references on EntityFrameworkCore and SQLite set of packages to provide ready to go solution for Windows, MacOS, Android, iOS platforms.",
1212
"keywords": [

README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,34 @@ Then use EFCore as usual.
4444
- Run the command
4545

4646
``` CLI
47-
openupm add extensions.unity.bundle.efcore.sqlite
47+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
48+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
49+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
50+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
51+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
52+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
53+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
54+
openupm add [email protected] --registry https://unitynuget-registry.openupm.com/
55+
56+
```
57+
58+
- Modify `/Packages/manifest.json` file by adding required `dependencies` and `scopedRegistries`
59+
60+
```json
61+
{
62+
"dependencies": {
63+
"extensions.unity.bundle.efcore.sqlite": "0.0.9"
64+
},
65+
"scopedRegistries": [
66+
{
67+
"name": "package.openupm.com",
68+
"url": "https://package.openupm.com",
69+
"scopes": [
70+
"com.openupm"
71+
]
72+
}
73+
]
74+
}
4875
```
4976

5077
# Alternative usage

0 commit comments

Comments
 (0)