move namespaces

This commit is contained in:
Tommy Parnell
2015-05-11 18:57:52 -04:00
parent 44e3cd6a65
commit bd0552914a
16 changed files with 25 additions and 28 deletions

View File

@@ -1,7 +1,7 @@
using System; using System;
using NUnit.Framework; using NUnit.Framework;
using Untappd.Net.Authentication; using Untappd.Net.Authentication;
using Untappd.Net.Client; using Untappd.Net.OAuth;
namespace Untappd.Net.UnitTests.Authentication namespace Untappd.Net.UnitTests.Authentication
{ {

View File

@@ -1,6 +1,6 @@
using System; using System;
using NUnit.Framework; using NUnit.Framework;
using Untappd.Net.Client; using Untappd.Net.Authentication;
namespace Untappd.Net.UnitTests.Client namespace Untappd.Net.UnitTests.Client
{ {

View File

@@ -1,6 +1,6 @@
using System; using System;
using NUnit.Framework; using NUnit.Framework;
using Untappd.Net.Client; using Untappd.Net.Authentication;
namespace Untappd.Net.UnitTests.Client namespace Untappd.Net.UnitTests.Client
{ {

View File

@@ -5,11 +5,11 @@ using Moq;
using Newtonsoft.Json; using Newtonsoft.Json;
using NUnit.Framework; using NUnit.Framework;
using RestSharp; using RestSharp;
using Untappd.Net.Client;
using Untappd.Net.Request; using Untappd.Net.Request;
using Untappd.Net.Responses.BeerInfo; using Untappd.Net.Responses.BeerInfo;
using Untappd.Net.Responses.Actions; using Untappd.Net.Responses.Actions;
using System.IO; using System.IO;
using Untappd.Net.Authentication;
namespace Untappd.Net.UnitTests.Request namespace Untappd.Net.UnitTests.Request
{ {

View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using Newtonsoft.Json; using Newtonsoft.Json;
using NUnit.Framework; using NUnit.Framework;
using Untappd.Net.Client; using Untappd.Net.Authentication;
using Untappd.Net.Request; using Untappd.Net.Request;
using Untappd.Net.Responses.BeerInfo; using Untappd.Net.Responses.BeerInfo;
using Untappd.Net.Responses.BeerSearch; using Untappd.Net.Responses.BeerSearch;

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
namespace Untappd.Net.Client namespace Untappd.Net.Authentication
{ {
public class AuthenticatedUntappdCredentials : UntappdCredentials, IAuthenticatedUntappdCredentials public class AuthenticatedUntappdCredentials : UntappdCredentials, IAuthenticatedUntappdCredentials
{ {

View File

@@ -1,4 +1,4 @@
namespace Untappd.Net.Client namespace Untappd.Net.Authentication
{ {
public interface IAuthenticatedUntappdCredentials : IUntappdCredentials public interface IAuthenticatedUntappdCredentials : IUntappdCredentials
{ {

View File

@@ -1,5 +1,5 @@
 
namespace Untappd.Net.Client namespace Untappd.Net.Authentication
{ {
public interface IUnAuthenticatedUntappdCredentials : IUntappdCredentials public interface IUnAuthenticatedUntappdCredentials : IUntappdCredentials
{ {

View File

@@ -1,7 +1,6 @@
using System.Collections; using System.Collections.Generic;
using System.Collections.Generic;
namespace Untappd.Net.Client namespace Untappd.Net.Authentication
{ {
public interface IUntappdCredentials public interface IUntappdCredentials
{ {

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
namespace Untappd.Net.Client namespace Untappd.Net.Authentication
{ {
public class UnAuthenticatedUntappdCredentials : UntappdCredentials, IUnAuthenticatedUntappdCredentials public class UnAuthenticatedUntappdCredentials : UntappdCredentials, IUnAuthenticatedUntappdCredentials
{ {

View File

@@ -1,8 +1,6 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace Untappd.Net.Client namespace Untappd.Net.Authentication
{ {
public abstract class UntappdCredentials : IUntappdCredentials public abstract class UntappdCredentials : IUntappdCredentials
{ {

View File

@@ -1,7 +1,7 @@
using System; using System;
using Untappd.Net.Client; using Untappd.Net.Authentication;
namespace Untappd.Net.Authentication namespace Untappd.Net.OAuth
{ {
public static class AuthenticationHelper public static class AuthenticationHelper
{ {

View File

@@ -4,9 +4,9 @@ using System.Threading.Tasks;
using Newtonsoft.Json; using Newtonsoft.Json;
using Newtonsoft.Json.Linq; using Newtonsoft.Json.Linq;
using RestSharp; using RestSharp;
using Untappd.Net.Client;
using Untappd.Net.Exception; using Untappd.Net.Exception;
using System; using System;
using Untappd.Net.Authentication;
namespace Untappd.Net.Request namespace Untappd.Net.Request
{ {

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Untappd.Net.Client; using Untappd.Net.Authentication;
using Untappd.Net.Exception; using Untappd.Net.Exception;
namespace Untappd.Net.Request namespace Untappd.Net.Request

View File

@@ -1,5 +1,5 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using Untappd.Net.Client; using Untappd.Net.Authentication;
namespace Untappd.Net.Request namespace Untappd.Net.Request
{ {

View File

@@ -46,7 +46,7 @@
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Authentication\AuthenticationHelper.cs" /> <Compile Include="OAuth\AuthenticationHelper.cs" />
<Compile Include="Exception\HttpErrorException.cs" /> <Compile Include="Exception\HttpErrorException.cs" />
<Compile Include="Request\IAction.cs" /> <Compile Include="Request\IAction.cs" />
<Compile Include="Request\RepositoryGet.cs" /> <Compile Include="Request\RepositoryGet.cs" />
@@ -61,12 +61,12 @@
<Compile Include="Responses\Actions\AddFriend.cs" /> <Compile Include="Responses\Actions\AddFriend.cs" />
<Compile Include="Responses\Actions\ToastUntoast.cs" /> <Compile Include="Responses\Actions\ToastUntoast.cs" />
<Compile Include="SingleObjectArrayConverter.cs" /> <Compile Include="SingleObjectArrayConverter.cs" />
<Compile Include="Client\AuthenticatedUntappdCredentials.cs" /> <Compile Include="Authentication\AuthenticatedUntappdCredentials.cs" />
<Compile Include="Client\IAuthenticatedUntappdCredentials.cs" /> <Compile Include="Authentication\IAuthenticatedUntappdCredentials.cs" />
<Compile Include="Client\IUnAuthenticatedUntappdCredentials.cs" /> <Compile Include="Authentication\IUnAuthenticatedUntappdCredentials.cs" />
<Compile Include="Client\IUntappdCredentials.cs" /> <Compile Include="Authentication\IUntappdCredentials.cs" />
<Compile Include="Client\UnAuthenticatedUntappdCredentials.cs" /> <Compile Include="Authentication\UnAuthenticatedUntappdCredentials.cs" />
<Compile Include="Client\UntappdCredentials.cs" /> <Compile Include="Authentication\UntappdCredentials.cs" />
<Compile Include="Constants.cs" /> <Compile Include="Constants.cs" />
<Compile Include="Exception\BaseUntappdException.cs" /> <Compile Include="Exception\BaseUntappdException.cs" />
<Compile Include="Exception\EndpointConfigurationException.cs" /> <Compile Include="Exception\EndpointConfigurationException.cs" />