{"id":13662045,"url":"https://github.com/andtechstudios/gooball","last_synced_at":"2025-07-11T06:32:32.539Z","repository":{"id":46183636,"uuid":"311190335","full_name":"andtechstudios/gooball","owner":"andtechstudios","description":"Build, test, and manage Unity projects from the command line","archived":false,"fork":false,"pushed_at":"2025-02-23T08:38:27.000Z","size":257,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-26T06:39:52.721Z","etag":null,"topics":["cli","dotnet-tool","nuget","unity"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andtechstudios.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2020-11-09T01:15:58.000Z","updated_at":"2025-02-23T08:38:27.000Z","dependencies_parsed_at":"2024-02-27T08:42:24.592Z","dependency_job_id":"49b9412c-8201-431e-af45-85812034628d","html_url":"https://github.com/andtechstudios/gooball","commit_stats":{"total_commits":123,"total_committers":6,"mean_commits":20.5,"dds":"0.41463414634146345","last_synced_commit":"ec914633193831586c08575ce0fd32cba2bf9582"},"previous_names":["andrewmjordan/gooball"],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/andtechstudios/gooball","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fgooball","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fgooball/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fgooball/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fgooball/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andtechstudios","download_url":"https://codeload.github.com/andtechstudios/gooball/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fgooball/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264747908,"owners_count":23657926,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","dotnet-tool","nuget","unity"],"created_at":"2024-08-02T05:01:47.747Z","updated_at":"2025-07-11T06:32:32.312Z","avatar_url":"https://github.com/andtechstudios.png","language":"C#","funding_links":[],"categories":["C\\#"],"sub_categories":[],"readme":"## Setup\n\n### Prerequisites\n* [.NET Core](https://docs.microsoft.com/en-us/dotnet/core/tools/global-tools)\n* Make sure [NuGet Gallery](https://nuget.org) is registered as a source in your NuGet configuration (it is by default).\n\n```shell\n$ dotnet nuget list source\nRegistered Sources:\n  1.  nuget.org [Enabled]\n      https://api.nuget.org/v3/index.json\n```\n\n### Installation\n1. Use `dotnet tool install`.\n```shell\n$ dotnet tool install --global Andtech.Gooball\n```\n\n### Uninstallation\n1. Use `dotnet tool uninstall`.\n```shell\n$ dotnet tool uninstall --global Andtech.Gooball\n```\n\n---\n\n## Usage\n\n### Unity Project Commands\n```\ngoo \u003ccommand\u003e [\u003cprojectPath\u003e] [--follow] [-- \u003cargs\u003e]\nGooball commands:\n\topen\tOpen a Unity project with a unity editor\n\ttest\tRun tests on a Unity project\n\tbuild\tBuild a unity project\n\trun\t\tRun arbitrary Unity commands\n```\n\n| Parameter | Description | Remarks |\n| --- | --- | --- |\n| `projectPath` | The path to the Unity project. | Default: `./` |\n| `--follow` | (Experimental) Output appended data to console as the Unity log grows. |  |\n| `args` | Arguments to pass to the Unity process (e.g. `Unity.exe`). |  |\n\n### Miscellaneous Commands\n\n#### List installed Unity editors\n```\ngoo list\n```\n\n#### Hide assets\n```\ngoo hide [--in-package \u003cpackagePath\u003e] \u003cassetPath\u003e\n```\n\n| Parameter | Description | Remarks |\n| --- | --- | --- |\n| `--in-package` | The path to the Unity project. | This folder should contain your `package.json`. |\n| `assetPath` | The path to the asset. | This will hide the asset and delete the associated `meta` file. |\n\n---\n\n## Examples\n\n### Open a Unity project with a Unity editor\n```\n$ goo MyProject\n```\n\n### Build a Unity project\n```\n$ goo build MyProject -- -executeMethod BuildAll\n```\n\n### Run tests on Unity project\n```\n$ goo test MyProject -- -testResults results.xml\n```\n\n### Run arbitrary Unity commands\n```\n$ goo run -- -batchMode -quit -executeMethod ExportPackages\n```\n\n### Hide assets from the Unity asset database\n\n*This hides assets from Unity during the import process (see [Unity - Manual: Special folder names](https://docs.unity3d.com/Manual/SpecialFolders.html) for more details)*\n\n```\n$ goo hide MyProject/Assets/README.md\n```\n\n```\n$ goo hide --in-package MyProject/Assets/MyPackage MyProject/Assets/MyPackage/Samples\n```\n\n### List installed Unity editors\n```\n$ goo list\n2021.1.24f1\t[/mnt/c/Program Files/Unity/Hub/Editor/2021.1.24f1/Editor/Unity.exe]\n2021.2.0f1\t[/mnt/c/Program Files/Unity/Hub/Editor/2021.2.0f1/Editor/Unity.exe]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandtechstudios%2Fgooball","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandtechstudios%2Fgooball","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandtechstudios%2Fgooball/lists"}