From 3d557124f76c13282cc01dc766b2c40d48768f33 Mon Sep 17 00:00:00 2001 From: Jonathan Pryor Date: Thu, 23 Mar 2017 10:43:23 -0400 Subject: [PATCH] Bump to mono/2017-02/06060e29 Update the `BuildReleaseApplicationWithSpacesInPath` because the cross-compilers won't exist on PR builds where mono is bumped -- we only build the cross compilers on "full" master builds. --- external/mono | 2 +- .../Tests/Xamarin.Android.Build.Tests/BuildTest.cs | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/external/mono b/external/mono index 24e82a53858..06060e290dd 160000 --- a/external/mono +++ b/external/mono @@ -1 +1 @@ -Subproject commit 24e82a538588116cbd490eac44ff98fc9f4a9817 +Subproject commit 06060e290dd379145112a4f31efd0ccc76c9ea24 diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs index 21268f3da3e..3289c33bb68 100644 --- a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs +++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs @@ -30,6 +30,18 @@ public void BuildReleaseApplicationWithSpacesInPath () IsRelease = true, AotAssemblies = true, }; + proj.Imports.Add (new Import ("foo.targets") { + TextContent = () => @" + + + + False + + + + +", + }); using (var b = CreateApkBuilder (Path.Combine ("temp", "BuildReleaseAppWithA InIt(1)"))) { Assert.IsTrue (b.Build (proj), "Build should have succeeded."); }