I’m working on an open source package and I would like to enable people to install it with a git url. The problem is that my git repo contains the entire Unity project that I use to develop my package, and not just the package. So when I try to install my package with a git url, I get the following error:
Cannot perform upm operation: Unable to add package [https://github.com/hayden-donnelly/ntg-unity.git]:
[https://github.com/hayden-donnelly/ntg-unity.git] does not point to a valid package. No package manifest was found. [NotFound].
This seems to be because my package is not in the root of the git repo. Is there any way to point UPM to my packages folder inside of Assets so that I don’t get this error? I want to keep my repo structured the way it is because it allows me to quickly clone the entire project, and start working without any additional setup.