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 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
| 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.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
| 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 | |
| { |
NewerOlder