From c89f203d0dcc72ff19ee5c73560d40900fbb7f53 Mon Sep 17 00:00:00 2001 From: Ilses Date: Sun, 7 Aug 2016 15:08:57 -0700 Subject: [PATCH 1/2] Fix up packages dir to be more friendly toward submodule use --- PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj b/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj index 6c9e2cb..92bd72c 100644 --- a/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj +++ b/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj @@ -39,7 +39,7 @@ True - ..\packages\GPSOAuthSharp.0.0.5\lib\GPSOAuthSharp.dll + $(SolutionDir)\packages\GPSOAuthSharp.0.0.5\lib\GPSOAuthSharp.dll True @@ -55,7 +55,7 @@ True - ..\packages\POGOProtos.1.5.0\lib\net45\POGOProtos.dll + $(SolutionDir)\packages\POGOProtos.1.5.0\lib\net45\POGOProtos.dll True @@ -131,4 +131,4 @@ --> - \ No newline at end of file + From 55e992b8a09d1fe768a43c249bb0d7ba26a29388 Mon Sep 17 00:00:00 2001 From: Ilses Date: Sun, 7 Aug 2016 15:09:38 -0700 Subject: [PATCH 2/2] Make PtcLogin class public (now matches GoogleLogin) --- PokemonGo.RocketAPI/Login/PtcLogin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PokemonGo.RocketAPI/Login/PtcLogin.cs b/PokemonGo.RocketAPI/Login/PtcLogin.cs index bd36e5c..67410e6 100644 --- a/PokemonGo.RocketAPI/Login/PtcLogin.cs +++ b/PokemonGo.RocketAPI/Login/PtcLogin.cs @@ -8,7 +8,7 @@ namespace PokemonGo.RocketAPI.Login { - class PtcLogin : ILoginType + public class PtcLogin : ILoginType { readonly string password; readonly string username;