Installing Project Auditor
There are several ways to install Project Auditor. Choose the most appropriate method based on your needs.
Note: To install Project Auditor for development purposes, go to this page instead.
Installing as read-only Package
At this time, Project Auditor is not discoverable via Package Manager so it has to be installed from its Git repository. The instructions that follow are specific to Project Auditor, however, more infromation on how a package can be added to a project as a dependency from Git, you can check the Package Manager documentation.
Package Manager UI (Recommended)
The easiest way to install Project Auditor in Unity 2018 (or newer) is via Package Manager with the following steps:
Click on Code and copy the repository HTTPS URL to the clipboard

In Package Manager, click on the + button (top left) and select Add package from git URL

Finally, paste the URL and click Add

Note that to install a specific version, simply add #<version>
at the end of the URL. For example:
https://github.com/Unity-Technologies/ProjectAuditor.git#0.8.2-preview
A list of releases can be found here.
Upgrade to a newer version
Under the hood, the method described above adds com.unity.project-auditor
as a dependency in the project Packages/manifest.json
file. To upgrade to a new Project Auditor version, you can simply modify the tag. For example:
{
"dependencies": {
"com.unity.project-auditor": "https://github.com/Unity-Technologies/ProjectAuditor.git#0.8.2-preview",
}
}