This repository has been archived by the owner on Dec 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from umm/support_upm
Support UPM
- Loading branch information
Showing
8 changed files
with
98 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Publish UPM Package | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
publish: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: monry/actions-upm-publish@v1 | ||
with: | ||
npm_auth_token: ${{ secrets.NPM_AUTH_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
registry=https://upm-packages.dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# ExtraLINQ | ||
|
||
* | ||
* Forked from [mariusschulz/ExtraLINQ](https://github.com/mariusschulz/ExtraLINQ) | ||
* Customized for Unity 2017 | ||
|
||
## Requirement | ||
|
||
* Unity 2017 | ||
|
||
## Install | ||
|
||
### With Unity Package Manager | ||
|
||
```bash | ||
upm add package dev.upm-packages.extra-zenject | ||
``` | ||
|
||
Note: `upm` command is provided by [this repository](https://github.com/upm-packages/upm-cli). | ||
|
||
You can also edit `Packages/manifest.json` directly. | ||
|
||
```jsonc | ||
{ | ||
"dependencies": { | ||
// (snip) | ||
"dev.upm-packages.extra-zenject": "[latest version]", | ||
// (snip) | ||
}, | ||
"scopedRegistries": [ | ||
{ | ||
"name": "Unofficial Unity Package Manager Registry", | ||
"url": "https://upm-packages.dev", | ||
"scopes": [ | ||
"dev.upm-packages" | ||
] | ||
} | ||
] | ||
} | ||
``` | ||
|
||
### Any other else (classical umm style) | ||
|
||
```shell | ||
yarn add "umm/extra_linq#^1.0.0" | ||
``` | ||
|
||
# Usage | ||
|
||
* See [README.md](https://github.com/mariusschulz/ExtraLINQ/blob/master/README.md) in original repository. | ||
|
||
# License | ||
|
||
Copyright (c) 2016 Marius Schulz | ||
|
||
Released under the MIT license, see [LICENSE.txt](LICENSE.txt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "dev.upm-packages.extra-linq", | ||
"displayName": "Extra LINQ", | ||
"version": "1.3.0", | ||
"unity": "2019.3", | ||
"description": "", | ||
"homepage": "https://github.com/umm/extra_linq", | ||
"bugs": { | ||
"url": "https://github.com/umm/extra_linq/issues" | ||
}, | ||
"author": "Tetsuya Mori", | ||
"license": "MIT", | ||
"keywords": [], | ||
"category": "", | ||
"dependencies": { | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/umm/extra_linq" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Assets/CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Assets/README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters