This Unity Editor Extensions create script folders (Editor, Runtime, and each Tests) containing assembly definition file (.asmdef).
When opening the context menu and select Create | C# Script Folders and Assemblies with Tests, The root folder (e.g., named "MyFeature") and below will be created as follows.
MyFeature
├── Scripts
│ ├── Editor
│ │ └── MyFeature.Editor.asmdef
│ └── Runtime
│ └── MyFeature.asmdef
└── Tests
├── Editor
│ └── MyFeature.Editor.Tests.asmdef
└── Runtime
└── MyFeature.Tests.asmdef
And the references of each asmdef are set as follows.
MyFeature
has not referencesMyFeature.Editor
has references toMyFeature
MyFeature.Tests
has references toMyFeature
MyFeature.Editor.Tests
has references toMyFeature
andMyFeature.Editor
If you installed openupm-cli, run the command below
openupm add com.nowsprinting.create-script-folders-with-tests
Or open Package Manager window (Window | Package Manager) and add package from git URL
https://github.com/nowsprinting/create-script-folders-with-tests.git
MIT License
Open an issue or create a pull request.
Be grateful if you could label the PR as enhancement
, bug
, chore
and documentation
. See PR Labeler settings for automatically labeling from the branch name.
Run Actions | Create release pull request | Run workflow
and merge created PR.
(Or bump version in package.json on default branch)
Then, Will do the release process automatically by Release workflow. And after tagged, OpenUPM retrieves the tag and updates it.
Do NOT manually operation the following operations:
- Create release tag
- Publish draft releases