-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
N-12 CollectABull to 158,WP8,3.1.1.-beta2
- Loading branch information
Showing
279 changed files
with
942 additions
and
1,477 deletions.
There are no files selected for viewing
This file contains 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
2 changes: 1 addition & 1 deletion
2
...sl40+wp71/ViewModels/FirstViewModel.cs.pp → ...ctABull.Core/ViewModels/FirstViewModel.cs
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="MvvmCross" version="3.0.5" targetFramework="portable-win+net45+MonoAndroid16+MonoTouch40+sl40+wp71" /> | ||
<package id="MvvmCross.HotTuna.CrossCore" version="3.0.5" targetFramework="portable-win+net45+MonoAndroid16+MonoTouch40+sl40+wp71" /> | ||
<package id="MvvmCross.HotTuna.Plugin.Location" version="3.0.5" targetFramework="portable-win+net45+MonoAndroid16+MonoTouch40+sl40+wp71" /> | ||
<package id="MvvmCross.HotTuna.Plugin.Messenger" version="3.0.5" targetFramework="portable-win+net45+MonoAndroid16+MonoTouch40+sl40+wp71" /> | ||
<package id="MvvmCross.HotTuna.Plugin.Sqlite" version="3.0.5" targetFramework="portable-win+net45+MonoAndroid16+MonoTouch40+sl40+wp71" /> | ||
<package id="MvvmCross.HotTuna.StarterPack" version="3.0.5" targetFramework="portable-win+net45+MonoAndroid16+MonoTouch40+sl40+wp71" /> | ||
<package id="MvvmCross" version="3.1.1-beta2" targetFramework="portable-win+net45+sl50+wp80+MonoAndroid10+MonoTouch10" /> | ||
<package id="MvvmCross.HotTuna.CrossCore" version="3.1.1-beta2" targetFramework="portable-win+net45+sl50+wp80+MonoAndroid10+MonoTouch10" /> | ||
<package id="MvvmCross.HotTuna.MvvmCrossLibraries" version="3.1.1-beta2" targetFramework="portable-win+net45+sl50+wp80+MonoAndroid10+MonoTouch10" /> | ||
<package id="MvvmCross.HotTuna.Plugin.Location" version="3.1.1-beta2" targetFramework="portable-win+net45+sl50+wp80+MonoAndroid10+MonoTouch10" /> | ||
<package id="MvvmCross.HotTuna.Plugin.Messenger" version="3.1.1-beta2" targetFramework="portable-win+net45+sl50+wp80+MonoAndroid10+MonoTouch10" /> | ||
<package id="MvvmCross.HotTuna.Plugin.Sqlite" version="3.1.1-beta2" targetFramework="portable-win+net45+sl50+wp80+MonoAndroid10+MonoTouch10" /> | ||
<package id="MvvmCross.HotTuna.StarterPack" version="3.1.1-beta2" targetFramework="portable-win+net45+sl50+wp80+MonoAndroid10+MonoTouch10" /> | ||
<package id="MvvmCross.PortableSupport" version="3.1.1-beta2" targetFramework="portable-win+net45+sl50+wp80+MonoAndroid10+MonoTouch10" /> | ||
</packages> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using System; | ||
using System.Diagnostics; | ||
using Cirrious.CrossCore.Platform; | ||
|
||
namespace CollectABull.Phone | ||
{ | ||
public class DebugTrace : IMvxTrace | ||
{ | ||
public void Trace(MvxTraceLevel level, string tag, Func<string> message) | ||
{ | ||
Debug.WriteLine(tag + ":" + level + ":" + message()); | ||
} | ||
|
||
public void Trace(MvxTraceLevel level, string tag, string message) | ||
{ | ||
Debug.WriteLine(tag + ":" + level + ":" + message); | ||
} | ||
|
||
public void Trace(MvxTraceLevel level, string tag, string message, params object[] args) | ||
{ | ||
try | ||
{ | ||
Debug.WriteLine(string.Format(tag + ":" + level + ":" + message, args)); | ||
} | ||
catch (FormatException) | ||
{ | ||
Trace(MvxTraceLevel.Error, tag, "Exception during trace of {0} {1} {2}", level, message); | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.