Skip to content
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix msbuild tests.
  • Loading branch information
rolfbjarne committed Nov 14, 2025
commit 08cffd4433ab3e8ff2de38f56f72bf461b589ebc
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ MergeAppBundles CreateTask (string outputBundle, params string [] inputBundles)
var task = CreateTask<MergeAppBundles> ();
task.InputAppBundles = inputItems.ToArray ();
task.OutputAppBundle = outputBundle;
task.SdkDevPath = Configuration.xcode_root;
return task;
}

Expand Down Expand Up @@ -98,7 +99,7 @@ public void TestLipoExecutable ()

var outputBundle = Path.Combine (Cache.CreateTemporaryDirectory (), "Merged.app");
var task = CreateTask (outputBundle, bundles);
Assert.IsTrue (task.Execute (), "Task execution");
ExecuteTask (task);

// The bundle should only contain a single file.
Assert.AreEqual (1, Directory.GetFileSystemEntries (outputBundle).Length, "Files in bundle");
Expand Down