Created
March 2, 2015 20:49
-
-
Save jonathanpeppers/e8674b4cd99052919fc7 to your computer and use it in GitHub Desktop.
Android manifest helper for FAKE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let UpdateManifest version build project = | |
let path = (project + "/Properties/AndroidManifest.xml") | |
let ns = Seq.singleton(("android", "http://schemas.android.com/apk/res/android")) | |
XmlPokeNS path ns "manifest/@android:versionName" (version + "." + build) | |
XmlPokeNS path ns "manifest/@android:versionCode" build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment