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
| module EasyLayout | |
| open System | |
| open System.Drawing | |
| open Microsoft.FSharp.Quotations | |
| open Microsoft.FSharp.Quotations.Patterns | |
| open Microsoft.FSharp.Quotations.DerivedPatterns | |
| open MonoTouch.Foundation | |
| open MonoTouch.UIKit |
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.Configuration; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net.Http; | |
| using System.Net.Http.Headers; | |
| using System.Web; | |
| using Microsoft.WindowsAzure.Storage; | |
| using Microsoft.WindowsAzure.Storage.Blob; |
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
| Function Log-Start{ | |
| <# | |
| .SYNOPSIS | |
| Creates log file | |
| .DESCRIPTION | |
| Creates log file with path and name that is passed. Checks if log file exists, and if it does deletes it and creates a new one. | |
| Once created, writes initial logging data | |
| .PARAMETER LogPath |
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.Diagnostics; | |
| using System.Linq; | |
| using Raven.Abstractions.Indexing; | |
| using Raven.Client; | |
| using Raven.Client.Indexes; | |
| using Raven.Imports.Newtonsoft.Json; | |
| using Raven.Tests.Helpers; | |
| using Xunit; |
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 NSubstitute; | |
| using NUnit.Framework; | |
| using System.Collections.ObjectModel; | |
| using System.Net; | |
| using System.Net.Http; | |
| using System.Security.Claims; | |
| using System.Security.Principal; | |
| using System.Threading; | |
| using System.Web.Http; | |
| using System.Web.Http.Controllers; |
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; | |
| using System.Collections.Specialized; | |
| using System.Linq; | |
| using Cirrious.CrossCore.Core; | |
| using Cirrious.CrossCore.WeakSubscription; | |
| using Cirrious.MvvmCross.Binding.Attributes; | |
| using Cirrious.MvvmCross.Binding.BindingContext; | |
| using Cirrious.MvvmCross.Binding.ExtensionMethods; | |
| using MonoMac.AppKit; |
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 MonoMac.AppKit; | |
| using MonoMac.Foundation; | |
| namespace CentraStage.Mac | |
| { | |
| [Register("CsTableColumn")] | |
| public class CsTableColumn : NSTableColumn | |
| { | |
| #region Constructors |
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 Cirrious.CrossCore.Core; | |
| using Cirrious.MvvmCross.Binding.BindingContext; | |
| using MonoMac.AppKit; | |
| using MonoMac.Foundation; | |
| namespace CentraStage.Mac | |
| { | |
| [Register("CsTableCellView")] | |
| public class CsTableCellView : NSTableCellView, IMvxBindingContextOwner, IMvxDataConsumer |
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
| 'use strict'; | |
| var __gapiAvailable = function() { | |
| return typeof(gapi) !== 'undefined'; | |
| } | |
| angular.module('myApp.services', []) | |
| .value('version', '0.0.1'); | |
| // Our google services module |
NewerOlder