Skip to content

SetPlatform for the new Arm7 #3218

Discussion options

You must be logged in to vote

Assuming ARM7 is a more recent platform target, then it's not part of the enum yet (should be added in a future version of Cake), so in the meantime you should use .WithProperty("Platform", "xxxx")

e.g.

configurator
    .SetConfiguration(BuildParameters.Configuration)
-    .SetPlatformTarget(BuildParameters.Platform)
+    .WithProperty("Platform", "ARM7")
    .SetVerbosity(Verbosity.Diagnostic)
    .WithProperty("BuildIpa", "true")
    .WithProperty("CodesignKey",  BuildParameters.CertTypes[BranchProject].IOSTeam)
    .WithProperty("CodesignProvision", provisionType) 
    .WithProperty("MtouchNoSymbolStrip", "false")
    .WithProperty("ArchiveOnBuild", "true")
    .WithLogger(
        Con…

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@nick5454
Comment options

@nick5454
Comment options

@augustoproiete
Comment options

@nick5454
Comment options

@augustoproiete
Comment options

Answer selected by augustoproiete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants