Skip to content

Commit f958fed

Browse files
committedSep 5, 2014
Merge pull request roosmaa#6 from Andreyul/master
Fix *.jar files lookup path for Xamarin 3.5 library projects.
2 parents 70c6303 + d848f75 commit f958fed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Proguard.Build.Tasks/Tasks/Proguard.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public override bool Execute ()
7171
var tempDirectory = Path.Combine (OutputDirectory, "tmp");
7272
LibraryProjectsTempDirectory = Path.Combine (tempDirectory, "library_projects");
7373

74-
MoveFiles (LibraryProjectsDirectory, "*.jar", SearchOption.TopDirectoryOnly, LibraryProjectsTempDirectory, "library project jar");
74+
MoveFiles (LibraryProjectsDirectory, "*.jar", SearchOption.AllDirectories, LibraryProjectsTempDirectory, "library project jar");
7575
GenerateConfiguration ();
7676
var success = base.Execute ();
7777

0 commit comments

Comments
 (0)
Please sign in to comment.