Skip to content

Commit

Permalink
[tests] CreateApkBuilder can run Build,SignAndroidPackage
Browse files Browse the repository at this point in the history
Hoping this cuts down the 248 test failures...
  • Loading branch information
jonathanpeppers committed Jan 18, 2019
1 parent 96e8e32 commit 0f7d405
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public static class BuildHelper
public static ProjectBuilder CreateApkBuilder (string directory, bool cleanupAfterSuccessfulBuild = false, bool cleanupOnDispose = true)
{
var ret = CreateDllBuilder (directory, cleanupAfterSuccessfulBuild, cleanupOnDispose);
ret.Target = "SignAndroidPackage";
//NOTE: since $(BuildingInsideVisualStudio) is set, Build will not happen by default
ret.Target = "Build,SignAndroidPackage";
return ret;
}

Expand Down

0 comments on commit 0f7d405

Please sign in to comment.