Skip to content

Instantly share code, notes, and snippets.

View dbeattie71's full-sized avatar

Derek Beattie dbeattie71

  • Nebraska
  • 19:48 (UTC -05:00)
View GitHub Profile
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.
public class TextViewImeActionBinding : MvxAndroidTargetBinding
{
private bool subscribed;
private ICommand _command;
protected TextView TextView
{
get { return Target as TextView; }
}
/// <summary>
/// Author: softlion ([email protected])
/// </summary>
/// <remarks>
/// Thanks to: Stuart Lodge
/// </remarks>
public class MvxRadioGroupSelectedIndexBinding : MvxAndroidTargetBinding
{
bool stopListeningCheckChanged = false;
<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" />
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;
@dbeattie71
dbeattie71 / MvxFileDownloadCache.cs
Created May 23, 2014 16:12
MvxFileDownloadCache fetchingEnabled
// 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;
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; }
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
{
@dbeattie71
dbeattie71 / PortablePathEx.cs
Last active August 29, 2015 14:05
PCLStorage stuff
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)
{
public class SourceService
{
public SourceService()
{
Sources = new List<ISource>();
}
public List<ISource> Sources { get; set; }
public void AddSource(ISource firstSource)