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.IO; | |
| using System.Collections.Generic; | |
| using System.Data.SqlServerCe; | |
| using ServiceStack.OrmLite.SqlServer; | |
| namespace Slyngelstat.OrmLite.SqlCe | |
| { | |
| public class SqlCeOrmLiteDialectProvider : SqlServerOrmLiteDialectProvider | |
| { |
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.Net; | |
| using System.Web; | |
| using RestSharp; | |
| namespace Slyngelstat | |
| { | |
| public class GoogleOAuth2Provider | |
| { | |
| public string GetAuthenticateRedirectionUrl(string clientId, string callbackUrl, string scope, string state = null) | |
| { |
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 AspNetDependencyResolver : IDependencyResolver | |
| { | |
| private readonly IServiceProvider _aspnetServiceProvider; | |
| private readonly ActorSystem _system; | |
| private ConcurrentDictionary<string, Type> _typeCache; | |
| public AspNetDependencyResolver(IServiceProvider aspnetServiceProvider, ActorSystem system) | |
| { | |
| _aspnetServiceProvider = aspnetServiceProvider; | |
| _system = system; |
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 Akka.Actor; | |
| using Akka.Configuration; | |
| namespace Client | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
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
| Param( | |
| [string]$packageName, | |
| [string]$source | |
| ) | |
| UnInstall-Package $packageName -RemoveDependencies -Force -ErrorAction SilentlyContinue | |
| Install-Package $packageName -IncludePreRelease -Source $source |
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.Web.Http; | |
| using Microsoft.Owin.Hosting; | |
| using Nancy; | |
| using Owin; | |
| namespace ConsoleApplication4 | |
| { | |
| class Program | |
| { |
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
| [Fact] | |
| public void should_terminate_but_does_not() | |
| { | |
| var a = CreateTestProbe(); | |
| Watch(a); | |
| Sys.Stop(a); | |
| ExpectTerminated(a); |
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 AzureQueueStorageSink : ILogEventSink | |
| { | |
| CloudQueue _queue; | |
| ITextFormatter _formatter; | |
| public AzureQueueStorageSink(CloudQueue queue, ITextFormatter formatter) | |
| { | |
| _queue = queue; | |
| _formatter = formatter; | |
| } |
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
| # Description: Boxstarter Script | |
| # Author: Christian Sparre (modified from Jess Frazelle's) | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | |
| # You might need to set: Set-ExecutionPolicy RemoteSigned | |
| # | |
| # Run this boxstarter by calling the following from an **elevated** command-prompt: | |
| # start http://boxstarter.org/package/nr/url?<URL-TO-RAW-GIST> |
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
| version: '3' | |
| services: | |
| vstsdockerbuild.tests: | |
| environment: | |
| - BLOWUP | |
| image: vstsdockerbuild.tests | |
| build: | |
| context: . | |
| dockerfile: tests/VstsDockerBuild.Tests/Dockerfile |
OlderNewer