Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

[Provisioning] Install mono for fresh machine #13690

Merged
merged 1 commit into from
Feb 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion build/provisioning/provisioning.csx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
if (IsMac)
{
System.Net.Http.HttpClient client = new System.Net.Http.HttpClient (new System.Net.Http.HttpClientHandler { AllowAutoRedirect = true });

if (!Directory.Exists ("/Library/Frameworks/Mono.framework/Versions/Current/Commands/"))
{
Item ("Mono", "6.12.0.127")
.Source (_ => "https://download.mono-project.com/archive/6.12.0/macos-10-universal/MonoFramework-MDK-6.12.0.107.macos10.xamarin.universal.pkg");
}
ForceJavaCleanup();
OpenJDK ("1.8.0-40");

Expand Down