From 39e85c1458fec35a20cbaaeeb633a17aec33d8c5 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Wed, 6 Dec 2017 16:49:53 -0600 Subject: [PATCH] [build] fix Novell/*.MonoDroid.*.targets copy during build For a little while, our build has been copying three files to the root of our build tree: - Novell/MonoDroid.FSharp.targets - Novell/Novell.MonoDroid.Common.targets - Novell/Novell.MonoDroid.CSharp.targets These files are copied to build output in the Xamarin.Android.Build.Tasks project, but they should go in `bin/$(Configuration)` not the root of the build tree. While looking at binary log output, I noticed the Xamarin.Android.Build.Tests project was doing the copy due to having a `` to Xamarin.Android.Build.Tasks. Adding `False` to the `` fixes these files from being copied, and doesn't appear to have any other ill effects. --- .../Xamarin.Android.Build.Tests.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Xamarin.Android.Build.Tests.csproj b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Xamarin.Android.Build.Tests.csproj index 9a04c0c8228..c7c71a864f0 100644 --- a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Xamarin.Android.Build.Tests.csproj +++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Xamarin.Android.Build.Tests.csproj @@ -60,6 +60,7 @@ {3F1F2F50-AF1A-4A5A-BEDB-193372F068D7} Xamarin.Android.Build.Tasks + False