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
using Cirrious.CrossCore; | |
using Cirrious.CrossCore.IoC; | |
using Cirrious.MvvmCross.ViewModels; | |
using MvvmCross.Plugins.Messenger; | |
using %COMPANYNAME%.Core.Services; | |
using %COMPANYNAME%.Core.Services.Impl; | |
namespace %COMPANYNAME%.Core |
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
using System; | |
using System.IO; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
using Mono.Options; | |
namespace Stago.Mhp.Instr.Pocm.UnitTests.Droid.Server | |
{ |
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
# | |
# Notes: | |
# | |
# - 10/06/16 | |
# - the script attempts to connect to the first active Android emulator | |
# found in the list returned by the "adb devices" command, and launches it, if this list is empty. | |
# In this case, the AVD launched is the first .ini file found in the directory. | |
# |
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
Function AddTo-SystemPath { | |
Param([array]$PathToAdd) | |
$VerifiedPathsToAdd = $Null | |
Foreach($Path in $PathToAdd) { | |
if($env:Path -like "*$Path*") { | |
Write-Host "$Path already exists in Path statement" | |
} else { | |
$VerifiedPathsToAdd += ";$Path" | |
Write-Host "`$Path will be added to the environment path" |
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
using System; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
namespace Autosign | |
{ | |
public static class ProcessUtil | |
{ | |
public static void Execute(string exePath, string arguments) |
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
using System; | |
using System.IO; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
using Mono.Options; | |
namespace Company.Whatever.UnitTests.Droid.Server | |
{ |
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
using MvvmCross.Forms.Presenter.Core; | |
using Stago.Mhp.Instr.Pocm.Core.Views; | |
using Xamarin.Forms; | |
namespace Stago.Mhp.Instr.Pocm.Core | |
{ | |
public partial class App : MvxFormsApp | |
{ | |
public App() |
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
using System; | |
using Android.Support.V4.View; | |
using Android.Support.V4.Widget; | |
using Android.Views; | |
using Debug = System.Diagnostics.Debug; | |
namespace SillyCompany | |
{ | |
public enum AnchorBottomSheetState |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Sharpnado.Presentation.Paging | |
{ | |
/// <summary> | |
/// Interface IInfiniteListLoader. |
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
{ | |
"AttributesTolerance": 2, | |
"KeepFirstAttributeOnSameLine": true, | |
"MaxAttributeCharactersPerLine": 0, | |
"MaxAttributesPerLine": 1, | |
"NewlineExemptionElements": "RadialGradientBrush, GradientStop, LinearGradientBrush, ScaleTransfom, SkewTransform, RotateTransform, TranslateTransform, Trigger, Condition, Setter", | |
"SeparateByGroups": false, | |
"AttributeIndentation": 0, | |
"AttributeIndentationStyle": 1, | |
"RemoveDesignTimeReferences": false, |
OlderNewer