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
1>Server command 'Build': application remote build failed | |
1>Command execution task ended with exception | |
1>Exception System.Net.WebException: The remote server returned an error: (500) Internal Server Error. | |
1>Exception details can be found in the log file | |
1> | |
1> | |
1>Remote build step failed. | |
1>Done building target "_BuildNativeApplication" in project "Travefy.Touch.csproj" -- FAILED. | |
1>Done building project "Travefy.Touch.csproj" -- FAILED. | |
1>Build FAILED. |
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
public class TextViewImeActionBinding : MvxAndroidTargetBinding | |
{ | |
private bool subscribed; | |
private ICommand _command; | |
protected TextView TextView | |
{ | |
get { return Target as TextView; } | |
} |
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
/// <summary> | |
/// Author: softlion ([email protected]) | |
/// </summary> | |
/// <remarks> | |
/// Thanks to: Stuart Lodge | |
/// </remarks> | |
public class MvxRadioGroupSelectedIndexBinding : MvxAndroidTargetBinding | |
{ | |
bool stopListeningCheckChanged = false; |
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
<TextView | |
local:MvxBind="Text PasswordConfirm; ImeAction RegisterCommand" | |
android:textAppearance="?android:attr/textAppearanceLarge" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:hint="Password" | |
android:inputType="textPassword" | |
android:imeOptions="actionSend" /> |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Android.App; | |
using Android.Content; | |
using Android.OS; | |
using Android.Runtime; | |
using Android.Views; |
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
// MvxFileDownloadCache.cs | |
// (c) Copyright Cirrious Ltd. http://www.cirrious.com | |
// MvvmCross is licensed using Microsoft Public License (Ms-PL) | |
// Contributions and inspirations noted in readme.md and license.txt | |
// | |
// Project Lead - Stuart Lodge, @slodge, [email protected] | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; |
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
using System.Collections.Generic; | |
using ExpressPoll.Core.CBE.Pdm.Model; | |
namespace ExpressPoll.Core.CBE.Services.Business.Voter | |
{ | |
public class RequestFindVoter : RequestBase | |
{ | |
public SearchByEnum SearchBy { get; private set; } | |
public SearchAreaEnum SearchArea { get; private set; } |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Globalization; | |
using System.Runtime.CompilerServices; | |
using System.Threading.Tasks; | |
using Xamarin.Forms; | |
namespace perfomance | |
{ |
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
using System; | |
using PCLStorage; | |
namespace Flashlist.Common | |
{ | |
//https://github.com/mono/mono/blob/master/mcs/class/corlib/System.IO/Path.cs | |
public static class PortablePathEx | |
{ | |
public static string ChangeExtension(string path, string 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
public class SourceService | |
{ | |
public SourceService() | |
{ | |
Sources = new List<ISource>(); | |
} | |
public List<ISource> Sources { get; set; } | |
public void AddSource(ISource firstSource) |