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
Oct 14 14:56:05 iPad locationd[63] <Notice>: Location icon should now be in state 'Inactive' | |
Oct 14 14:56:12 iPad kernel[0] <Notice>: 035404.878747 wlan0.A[16543] AppleBCMWLANNetManager::updateLinkQualityMetrics(): Report LQM to User Land 100, fAverageRSSI -65 | |
Oct 14 14:56:44 iPad ubd[749] <Warning>: iCloud Documents through ubd is deactivated, using bird instead (Aug 6 2014 : 17:25:24). | |
Oct 14 14:56:51 iPad streaming_zip_conduit[624] <Warning>: LaunchServices: installing app for existing placeholder <LSApplicationProxy: 0x14d1a9b0> com.hitcents.hanx | |
Oct 14 14:56:51 iPad streaming_zip_conduit[624] <Warning>: LaunchServices: Not creating progress for <LSApplicationProxy: 0x14d1a9b0> com.hitcents.hanx since it is not a placeholder. | |
Oct 14 14:56:51 iPad installd[591] <Notice>: 0x503000 -[MIClientConnection _doBackgroundInstallationForPath:withOptions:completion:]: Install of "/var/mobile/Media/PublicStaging/HanxiOS.app" type Developer requested by streaming_zip_conduit (pid 624) | |
Oct 14 14:56:51 iPad installd[59 |
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
Building: Hanx.iOS.Extension (Ad-Hoc|iPhone) | |
Build started 10/14/2014 2:56:24 PM. | |
__________________________________________________ | |
Project "/Users/jonathanpeppers/Desktop/MonoTouch/HanxTypewriter/Hanx.iOS.Extension/Hanx.iOS.Extension.csproj" (Build target(s)): | |
Target _DetectSigningIdentity: | |
GenerateBundleName Task | |
ProjectName: Hanx.iOS.Extension |
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
#r @".nuget/FAKE.3.5.4/tools/FakeLib.dll" | |
open Fake | |
open BuildHelpers | |
open Fake.XamarinHelper | |
//A list of constants here | |
Target "server-tests" (fun () -> | |
MSBuild "" "Build" testParameters [ serverSolution ] |> ignore | |
) |
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
@echo off | |
.nuget\NuGet.exe install FAKE -Version 3.5.4 | |
packages\FAKE.3.5.4\tools\FAKE.exe build.fsx %1 |
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
#!/bin/bash | |
mono --runtime=v4.0 .nuget/nuget.exe install FAKE -Version 3.5.4 | |
mono --runtime=v4.0 packages/FAKE.3.5.4/tools/FAKE.exe build.fsx $@ |
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
open Fake.XamarinHelper | |
//Our variables such as project, solution, etc. | |
Target "ios" (fun () -> | |
iOSBuild (fun defaults -> | |
{defaults with | |
ProjectPath = solution | |
Configuration = "Ad-Hoc|iPhone" | |
Target = "Build" |
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 androidPrameters = [ | |
("Configuration", "Release") | |
("AndroidKeyStore", "True") | |
("AndroidSigningKeyStore", "PathToOurKeystore.keystore") | |
("AndroidSigningStorePass", "OurPassword") | |
("AndroidSigningKeyAlias", "OurKeyAlias") | |
("AndroidSigningKeyPass", "OurPassword") | |
] | |
//Other variables |
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 winParameters = [ | |
("Configuration", "Release") | |
("AppxBundle", "Auto") | |
("AppxBuildConfigurationSelection", "neutral") | |
("AppxPackage", "True") | |
("AppxPackageIsForStore", "True") | |
("AppxPackageDir", "../../../build/") | |
("AppxPackageDirWasSpecified", "true") | |
("AppVersion", versionNumber) | |
] |
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 serverParameters = [ | |
("Configuration", "Release") | |
("Platform", "AnyCPU") | |
("DeployOnBuild", "True") | |
("PublishProfile", "myprofile.pubxml") | |
("VisualStudioVersion", "12.0") | |
] | |
//Other variables | |
Target "server" (fun () -> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<!-- Existing stuff is here --> | |
<_SavePWD>True</_SavePWD> | |
<Password>PASSWORD_YOU_CAN_FIND_ON_PORTAL</Password> | |
</PropertyGroup> | |
</Project> |