Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

27,050

Downloads of v 2022.3.0:

8

Last Update:

03 Jun 2023

Package Maintainer(s):

Software Author(s):

  • Unity Technologies

Tags:

unity unity3d admin mac mono target

Unity macOS (Mono) Target Support

  • 1
  • 2
  • 3

2022.3.0 | Updated: 03 Jun 2023

Downloads:

27,050

Downloads of v 2022.3.0:

8

Maintainer(s):

Software Author(s):

  • Unity Technologies

Unity macOS (Mono) Target Support 2022.3.0

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Dependency requires reboot

Details

Scan Testing Exemption for this package version only:

Package contains file(s) too big to be uploaded to VirusTotal!

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Unity macOS (Mono) Target Support, run the following command from the command line or from PowerShell:

>

To upgrade Unity macOS (Mono) Target Support, run the following command from the command line or from PowerShell:

>

To uninstall Unity macOS (Mono) Target Support, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade unity-mac -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade unity-mac -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install unity-mac
  win_chocolatey:
    name: unity-mac
    version: '2022.3.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'unity-mac' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2022.3.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller unity-mac
{
    Name     = "unity-mac"
    Version  = "2022.3.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'unity-mac':
  ensure   => '2022.3.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

WARNING

There are versions of this package awaiting moderation . See the Version History section below.

Package Approved

This package was approved as a trusted package on 03 Jun 2023.

Description

This package adds macOS (Mono) Target Support to Unity.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$url64          = 'https://download.unity3d.com/download_unity/fb119bb0b476/TargetSupportInstaller/UnitySetup-Mac-Mono-Support-for-Editor-2022.3.0f1.exe'
$checksum64     = '3bc349fba0e422af5014386f49f5ea5e114e8c8541ec9b9b568bd727f6df36ff'

$packageArgs = @{
  packageName    = $env:ChocolateyPackageName
  fileType       = 'EXE'
  url64bit       = $url64
  checksum64     = $checksum64
  checksumType64 = 'sha256'
  silentArgs     = '/S'
  validExitCodes = @(0)
}

Install-ChocolateyPackage @packageArgs

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Unity macOS (Mono) Target Support 2022.2.21 8 Wednesday, May 31, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.20 11 Tuesday, May 23, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.19 11 Saturday, May 13, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.18 14 Tuesday, May 9, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.17 11 Saturday, April 29, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.16 11 Saturday, April 22, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.15 11 Saturday, April 15, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.14 10 Wednesday, April 12, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.13 15 Tuesday, April 4, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.12 16 Friday, March 24, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.11 16 Saturday, March 18, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.10 17 Saturday, March 11, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.9 15 Tuesday, March 7, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.8 31 Tuesday, February 28, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.7 12 Wednesday, February 22, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.6 17 Saturday, February 11, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.4 14 Saturday, January 28, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.3 12 Wednesday, January 25, 2023 Approved
Unity macOS (Mono) Target Support 2022.2.2 14 Tuesday, January 17, 2023 Approved
Unity macOS (Mono) Target Support 2022.1.23 23 Thursday, November 17, 2022 Approved
Unity macOS (Mono) Target Support 2022.1.22 17 Thursday, November 10, 2022 Approved
Unity macOS (Mono) Target Support 2022.1.21 18 Monday, October 31, 2022 Approved
Unity macOS (Mono) Target Support 2022.1.20 24 Thursday, October 13, 2022 Approved
Unity macOS (Mono) Target Support 2022.1.19 24 Thursday, October 6, 2022 Approved
Unity macOS (Mono) Target Support 2022.1.18 19 Friday, September 30, 2022 Approved
Unity macOS (Mono) Target Support 2022.1.17 24 Thursday, September 22, 2022 Approved
Unity macOS (Mono) Target Support 2022.1.16 24 Saturday, September 10, 2022 Approved
Unity macOS (Mono) Target Support 2022.1.15 21 Friday, September 2, 2022 Approved
Unity macOS (Mono) Target Support 2022.1.14 23 Tuesday, August 23, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.13 23 Saturday, August 13, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.12 25 Saturday, August 6, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.11 18 Thursday, July 28, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.10 33 Thursday, July 21, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.9 21 Saturday, July 16, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.8 28 Friday, July 8, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.7 49 Thursday, June 30, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.6 41 Friday, June 24, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.5 27 Friday, June 17, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.4 48 Thursday, June 9, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.3 28 Thursday, June 2, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.2 26 Friday, May 27, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.1 27 Saturday, May 21, 2022 Exempted
Unity macOS (Mono) Target Support 2022.1.0 40 Friday, May 13, 2022 Exempted
Unity macOS (Mono) Target Support 2021.3.26 3 Saturday, May 27, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.25 6 Saturday, May 13, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.24 5 Saturday, April 29, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.23 9 Monday, April 17, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.22 10 Saturday, April 1, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.21 27 Friday, March 17, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.20 10 Saturday, March 4, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.19 12 Saturday, February 18, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.18 9 Friday, February 3, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.17 8 Wednesday, January 25, 2023 Approved
Unity macOS (Mono) Target Support 2021.3.16 14 Friday, December 16, 2022 Approved
Unity macOS (Mono) Target Support 2021.3.15 12 Friday, December 2, 2022 Approved
Unity macOS (Mono) Target Support 2021.3.14 12 Saturday, November 19, 2022 Approved
Unity macOS (Mono) Target Support 2021.3.13 13 Tuesday, November 8, 2022 Approved
Unity macOS (Mono) Target Support 2021.3.12 14 Thursday, October 27, 2022 Approved
Unity macOS (Mono) Target Support 2021.3.11 19 Friday, September 30, 2022 Approved
Unity macOS (Mono) Target Support 2021.3.10 127 Saturday, September 17, 2022 Approved
Unity macOS (Mono) Target Support 2021.3.9 23 Friday, September 2, 2022 Approved
Unity macOS (Mono) Target Support 2021.3.8 21 Wednesday, August 10, 2022 Exempted
Unity macOS (Mono) Target Support 2021.3.7 22 Friday, July 29, 2022 Exempted
Unity macOS (Mono) Target Support 2021.3.6 21 Saturday, July 9, 2022 Exempted
Unity macOS (Mono) Target Support 2021.3.5 23 Thursday, June 23, 2022 Exempted
Unity macOS (Mono) Target Support 2021.3.4 24 Thursday, June 2, 2022 Exempted
Unity macOS (Mono) Target Support 2021.3.3 28 Friday, May 27, 2022 Exempted
Unity macOS (Mono) Target Support 2021.3.2 37 Sunday, May 8, 2022 Exempted
Unity macOS (Mono) Target Support 2021.3.1 30 Saturday, April 23, 2022 Exempted
Unity macOS (Mono) Target Support 2021.3.0 37 Wednesday, April 13, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.19 35 Thursday, April 7, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.18 39 Saturday, April 2, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.17 36 Friday, March 25, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.16 39 Friday, March 18, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.15 55 Saturday, March 12, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.14 32 Friday, March 4, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.13 38 Friday, February 25, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.12 40 Friday, February 18, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.11 35 Friday, February 11, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.10 48 Saturday, February 5, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.9 43 Friday, January 28, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.8 62 Friday, January 14, 2022 Exempted
Unity macOS (Mono) Target Support 2021.2.7 49 Friday, December 17, 2021 Exempted
Unity macOS (Mono) Target Support 2021.2.6 32 Monday, December 13, 2021 Exempted
Unity macOS (Mono) Target Support 2021.2.5 61 Friday, December 3, 2021 Exempted
Unity macOS (Mono) Target Support 2021.2.4 40 Friday, November 26, 2021 Exempted
Unity macOS (Mono) Target Support 2021.2.3 37 Friday, November 19, 2021 Exempted
Unity macOS (Mono) Target Support 2021.2.2 49 Friday, November 12, 2021 Exempted
Unity macOS (Mono) Target Support 2021.2.1 47 Saturday, November 6, 2021 Exempted
Unity macOS (Mono) Target Support 2021.2.0 110 Tuesday, October 26, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.26 76 Thursday, October 21, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.25 96 Friday, October 15, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.24 47 Friday, October 8, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.23 63 Friday, October 1, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.22 47 Thursday, September 23, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.21 47 Thursday, September 16, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.20 52 Friday, September 10, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.19 40 Thursday, September 2, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.18 47 Friday, August 27, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.17 63 Tuesday, August 17, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.16 88 Saturday, July 31, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.15 42 Thursday, July 15, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.14 41 Friday, July 9, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.13 81 Thursday, July 1, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.12 55 Thursday, June 17, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.11 55 Thursday, June 10, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.10 55 Saturday, June 5, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.9 54 Saturday, May 29, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.7 55 Friday, May 14, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.6 49 Friday, May 7, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.5 79 Wednesday, April 28, 2021 Exempted
Unity macOS (Mono) Target Support 2021.1.4 51 Friday, April 23, 2021 Approved
Unity macOS (Mono) Target Support 2021.1.3 73 Wednesday, April 14, 2021 Approved
Unity macOS (Mono) Target Support 2021.1.2 68 Thursday, April 8, 2021 Approved
Unity macOS (Mono) Target Support 2021.1.1 99 Wednesday, March 31, 2021 Approved
Unity macOS (Mono) Target Support 2021.1.0 70 Thursday, March 25, 2021 Approved
Unity macOS (Mono) Target Support 2020.3.48 2 Friday, May 19, 2023
Waiting for Maintainer
Unity macOS (Mono) Target Support 2020.3.46 9 Saturday, March 11, 2023 Approved
Unity macOS (Mono) Target Support 2020.3.45 9 Friday, February 17, 2023 Approved
Unity macOS (Mono) Target Support 2020.3.44 10 Friday, January 20, 2023 Approved
Unity macOS (Mono) Target Support 2020.3.43 8 Saturday, December 17, 2022 Approved
Unity macOS (Mono) Target Support 2020.3.42 10 Saturday, November 19, 2022 Approved
Unity macOS (Mono) Target Support 2020.3.41 14 Saturday, October 22, 2022 Approved
Unity macOS (Mono) Target Support 2020.3.40 13 Friday, September 30, 2022 Approved
Unity macOS (Mono) Target Support 2020.3.39 15 Friday, September 16, 2022 Approved
Unity macOS (Mono) Target Support 2020.3.38 21 Thursday, August 18, 2022 Exempted
Unity macOS (Mono) Target Support 2020.3.37 18 Saturday, July 23, 2022 Exempted
Unity macOS (Mono) Target Support 2020.3.36 17 Friday, June 17, 2022 Exempted
Unity macOS (Mono) Target Support 2020.3.35 26 Friday, May 27, 2022 Exempted
Unity macOS (Mono) Target Support 2020.3.34 24 Thursday, May 5, 2022 Exempted
Unity macOS (Mono) Target Support 2020.3.33 24 Friday, April 8, 2022 Exempted
Unity macOS (Mono) Target Support 2020.3.32 24 Thursday, March 24, 2022 Exempted
Unity macOS (Mono) Target Support 2020.3.31 27 Sunday, March 20, 2022 Exempted
Unity macOS (Mono) Target Support 2020.3.1 74 Tuesday, March 23, 2021 Approved
Unity macOS (Mono) Target Support 2020.3.0 62 Thursday, March 11, 2021 Approved
Unity macOS (Mono) Target Support 2020.2.7 60 Saturday, March 6, 2021 Approved
Unity macOS (Mono) Target Support 2020.2.6 71 Thursday, February 25, 2021 Approved
Unity macOS (Mono) Target Support 2020.2.5 78 Friday, February 19, 2021 Approved
Unity macOS (Mono) Target Support 2020.2.4 85 Saturday, February 13, 2021 Approved
Unity macOS (Mono) Target Support 2020.2.3 71 Friday, February 5, 2021 Approved
Unity macOS (Mono) Target Support 2020.2.2 83 Friday, January 22, 2021 Approved
Unity macOS (Mono) Target Support 2020.2.1 83 Friday, December 25, 2020 Approved
Unity macOS (Mono) Target Support 2020.2.0 73 Tuesday, December 15, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.17 81 Wednesday, December 9, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.16 91 Friday, December 4, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.15 88 Monday, November 30, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.14 105 Friday, November 20, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.13 96 Saturday, November 14, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.11 96 Thursday, October 29, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.10 84 Wednesday, October 28, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.9 102 Thursday, October 15, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.8 93 Saturday, October 10, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.7 102 Saturday, October 3, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.6 91 Thursday, September 17, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.4 118 Thursday, September 3, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.3 94 Friday, August 28, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.2 96 Thursday, August 13, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.1 95 Friday, August 7, 2020 Approved
Unity macOS (Mono) Target Support 2020.1.0 120 Friday, July 24, 2020 Approved
Unity macOS (Mono) Target Support 2019.4.40 20 Friday, June 17, 2022 Approved
Unity macOS (Mono) Target Support 2019.4.39 23 Wednesday, May 18, 2022 Approved
Unity macOS (Mono) Target Support 2019.4.37 30 Wednesday, March 23, 2022 Approved
Unity macOS (Mono) Target Support 2019.4.36 32 Sunday, March 20, 2022 Approved
Unity macOS (Mono) Target Support 2019.4.5 127 Friday, July 24, 2020 Approved
Unity macOS (Mono) Target Support 2019.4.4 116 Thursday, July 16, 2020 Approved
Unity macOS (Mono) Target Support 2019.4.3 114 Thursday, July 9, 2020 Approved
Unity macOS (Mono) Target Support 2019.4.2 92 Thursday, July 2, 2020 Approved
Unity macOS (Mono) Target Support 2019.4.1 96 Friday, June 19, 2020 Approved
Unity macOS (Mono) Target Support 2019.4.0 101 Wednesday, June 10, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.15 112 Thursday, May 28, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.14 102 Wednesday, May 20, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.13 138 Thursday, May 7, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.12 132 Thursday, April 30, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.11 133 Friday, April 24, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.10 114 Friday, April 17, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.9 134 Thursday, April 9, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.8 115 Tuesday, April 7, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.7 116 Thursday, March 26, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.6 108 Friday, March 20, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.5 142 Saturday, March 14, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.4 109 Saturday, March 7, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.3 137 Tuesday, March 3, 2020 Approved
Unity macOS (Mono) Target Support 2019.3.0 204 Saturday, February 1, 2020 Approved
Unity macOS (Mono) Target Support 2019.2.17 123 Thursday, December 19, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.16 96 Saturday, December 14, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.15 166 Thursday, December 5, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.14 116 Thursday, November 28, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.13 131 Thursday, November 21, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.12 122 Tuesday, November 12, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.11 121 Saturday, November 2, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.9 114 Saturday, October 12, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.8 114 Friday, October 4, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.7 156 Tuesday, October 1, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.6 122 Thursday, September 19, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.5 141 Thursday, September 12, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.4 182 Saturday, September 7, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.3 155 Thursday, August 29, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.2 157 Friday, August 23, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.1 175 Thursday, August 15, 2019 Approved
Unity macOS (Mono) Target Support 2019.2.0 169 Wednesday, July 31, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.12 172 Saturday, July 27, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.11 134 Saturday, July 20, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.10 166 Saturday, July 13, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.9 141 Saturday, July 6, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.8 168 Monday, June 24, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.7 155 Monday, June 17, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.6 119 Tuesday, June 11, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.5 151 Tuesday, June 4, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.4 167 Saturday, May 25, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.3 175 Saturday, May 18, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.2 178 Saturday, May 11, 2019 Approved
Unity macOS (Mono) Target Support 2019.1.1 185 Saturday, May 4, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.12 162 Tuesday, April 9, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.11 207 Saturday, March 30, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.10 150 Tuesday, March 26, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.9 129 Wednesday, March 20, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.8 187 Saturday, March 9, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.7 169 Tuesday, March 5, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.6 176 Saturday, February 16, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.5 193 Saturday, February 9, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.4 216 Friday, February 1, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.3 203 Saturday, January 26, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.2 208 Friday, January 18, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.1 202 Friday, January 11, 2019 Approved
Unity macOS (Mono) Target Support 2018.3.0 216 Friday, December 14, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.19 155 Saturday, December 8, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.18 188 Saturday, December 1, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.17 193 Friday, November 23, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.16 164 Friday, November 16, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.15 193 Saturday, November 10, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.14 195 Sunday, October 28, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.12 203 Sunday, October 14, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.11 207 Friday, October 5, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.10 170 Thursday, September 27, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.9 175 Monday, September 24, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.8 191 Monday, September 17, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.7 249 Monday, September 10, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.6 191 Friday, August 31, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.5 230 Thursday, August 23, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.4 176 Monday, August 20, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.3 193 Monday, August 13, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.2 219 Monday, August 6, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.1 193 Friday, July 27, 2018 Approved
Unity macOS (Mono) Target Support 2018.2.0 235 Thursday, July 12, 2018 Approved
Unity macOS (Mono) Target Support 2018.1.7 257 Sunday, July 8, 2018 Approved
Unity macOS (Mono) Target Support 2018.1.6 221 Friday, June 22, 2018 Approved
Unity macOS (Mono) Target Support 2018.1.5 237 Monday, June 18, 2018 Approved
Unity macOS (Mono) Target Support 2018.1.4 216 Monday, June 11, 2018 Approved
Unity macOS (Mono) Target Support 2018.1.3 213 Wednesday, June 6, 2018 Approved
Unity macOS (Mono) Target Support 2018.1.2 223 Monday, May 28, 2018 Approved
Unity macOS (Mono) Target Support 2018.1.1 259 Monday, May 21, 2018 Approved
Unity macOS (Mono) Target Support 2018.1.0 253 Wednesday, May 2, 2018 Approved
Unity Mac Target Support 2017.4.1 243 Saturday, April 21, 2018 Approved
Unity Mac Target Support 2017.3.1 305 Wednesday, February 7, 2018 Approved
Unity Mac Target Support 2017.3.0 653 Wednesday, December 20, 2017 Approved
Unity Mac Target Support 2017.2.1 311 Wednesday, December 13, 2017 Approved
Unity Mac Target Support 2017.2.0 367 Friday, October 13, 2017 Approved
Unity Mac Target Support 2017.1.2 294 Saturday, October 7, 2017 Approved
Unity Mac Target Support 2017.1.1 316 Saturday, September 9, 2017 Approved
Unity Mac Target Support 2017.1.0 367 Wednesday, July 12, 2017 Approved
Unity Mac Target Support 5.6.2 334 Thursday, June 22, 2017 Approved
Unity Mac Target Support 5.6.1 346 Thursday, May 11, 2017 Approved
Unity Mac Target Support 5.6.0 928 Friday, April 7, 2017 Approved
Unity Mac Target Support 5.5.2 555 Saturday, February 25, 2017 Approved
Unity Mac Target Support 5.5.1 405 Tuesday, February 21, 2017 Approved

Discussion for the Unity macOS (Mono) Target Support Package

Ground Rules:

  • This discussion is only about Unity macOS (Mono) Target Support and the Unity macOS (Mono) Target Support package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Unity macOS (Mono) Target Support, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus