You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update Readme with how to address scoped registry timeouts (#539)
Also:
- Wrap some naked URLs in anchors
- Improve some wording
- Tighten up GitHub alert blocks
- Create a parent "Add scoped registry" heading above the two current headings to clarify them as alternatives.
- Add comments to the `manifest.json` example so people hopefully don't totally overwrite their files with the example contents.
Copy file name to clipboardExpand all lines: readme.md
+27-10Lines changed: 27 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,20 +5,27 @@
5
5
This project provides a seamlessly integration of a [curated list](registry.json) of NuGet packages within the Unity Package Manager.
6
6
7
7
> [!IMPORTANT]
8
-
> DISCLAIMER: This is not an official service provided by Unity Technologies Inc.
8
+
> This is not an official service provided by Unity Technologies Inc.
9
9
10
10
## Usage
11
11
12
12
> [!NOTE]
13
13
> Feed provided by [OpenUPM](https://medium.com/openupm/openupm-launches-alternative-unitynuget-registry-0b8cc663cc41).
14
14
15
-
### Add scope registry (manifest.json)
15
+
### Add scoped registry
16
16
17
-
In order to use this service you simply need to edit the `Packages/manifest.json` in your project and add the following [scoped registry](https://docs.unity3d.com/Manual/upm-scoped.html):
17
+
In order to use this service you simply need to add a UPM [scoped registry](https://docs.unity3d.com/Manual/upm-scoped.html).
18
+
19
+
You can do this in several ways:
20
+
21
+
#### Via manifest.json
22
+
23
+
Manually edit your project's `Packages/manifest.json` file to look like the following:
18
24
19
25
```json
20
26
{
21
27
"scopedRegistries": [
28
+
// Other registries...
22
29
{
23
30
"name": "Unity NuGet",
24
31
"url": "https://unitynuget-registry.openupm.com",
@@ -28,14 +35,16 @@ In order to use this service you simply need to edit the `Packages/manifest.json
> Verify that you are using the new OpenUPM-based URL and not the old Azure Websites URL.
83
+
> You can also check [OpenUPM Status](https://openupm.github.io/upptime/history/other-unity-nu-get-registry) to see if OpenUPM itself is having an outage.
84
+
85
+
When opening the Package Manager Window, you should see a few packages coming from NuGet with the postfix text ` (NuGet)`, like in this screenshot:
0 commit comments