From 39ca12858a925e8ffbb59012d70f353fc7557efe Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Wed, 18 Jan 2017 16:07:30 -0500 Subject: [PATCH] [msbuild] Fixed the IpaPackageDir (#1523) Originally, the IpaPackagePath would default to something like: bin/Debug/iPhone/MyProjectName $(DateTime)/MyProjectName.ipa It was recently changed to not have the timestamp, but I seem to have forgotten to do away with the subdirectory completely. In other words, w/o this fix, we'd get: bin/Debug/iPhone/MyProjectName/MyProjectName.ipa When what we *really* want is: bin/Debug/iPhone/MyProjectName.ipa --- msbuild/Xamarin.iOS.Tasks.Core/Xamarin.iOS.Common.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msbuild/Xamarin.iOS.Tasks.Core/Xamarin.iOS.Common.targets b/msbuild/Xamarin.iOS.Tasks.Core/Xamarin.iOS.Common.targets index 85efa4f773..8e75288072 100644 --- a/msbuild/Xamarin.iOS.Tasks.Core/Xamarin.iOS.Common.targets +++ b/msbuild/Xamarin.iOS.Tasks.Core/Xamarin.iOS.Common.targets @@ -1890,7 +1890,7 @@ Copyright (C) 2013-2016 Xamarin. All rights reserved. - $(DeviceSpecificOutputPath)$(_AppBundleName) + $(DeviceSpecificOutputPath)