From 2fa75a678725e4366f1627b930d01f04b3eaedf9 Mon Sep 17 00:00:00 2001 From: Tim Clem Date: Fri, 27 Apr 2012 09:47:45 -0700 Subject: [PATCH] Move files around, optimize references --- Burr.Tests/Burr.Tests.csproj | 8 +++----- Burr.Tests/{ => Helpers}/StringExtensionsTests.cs | 0 Burr/AuthenticationType.cs | 15 +++++++++++++++ Burr/Burr.csproj | 7 ++----- Burr/GitHubClient.cs | 7 ------- Burr/{ => Helpers}/StringExtensions.cs | 0 6 files changed, 20 insertions(+), 17 deletions(-) rename Burr.Tests/{ => Helpers}/StringExtensionsTests.cs (100%) create mode 100644 Burr/AuthenticationType.cs rename Burr/{ => Helpers}/StringExtensions.cs (100%) diff --git a/Burr.Tests/Burr.Tests.csproj b/Burr.Tests/Burr.Tests.csproj index 033aec7d..cd0b31b9 100644 --- a/Burr.Tests/Burr.Tests.csproj +++ b/Burr.Tests/Burr.Tests.csproj @@ -35,11 +35,9 @@ - - - - + + ..\packages\xunit.1.9.0.1566\lib\xunit.dll @@ -51,7 +49,7 @@ - + diff --git a/Burr.Tests/StringExtensionsTests.cs b/Burr.Tests/Helpers/StringExtensionsTests.cs similarity index 100% rename from Burr.Tests/StringExtensionsTests.cs rename to Burr.Tests/Helpers/StringExtensionsTests.cs diff --git a/Burr/AuthenticationType.cs b/Burr/AuthenticationType.cs new file mode 100644 index 00000000..141ac544 --- /dev/null +++ b/Burr/AuthenticationType.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Burr +{ + public enum AuthenticationType + { + Anonymous, + Basic, + Oauth + } +} diff --git a/Burr/Burr.csproj b/Burr/Burr.csproj index cdaac36f..2fd734c3 100644 --- a/Burr/Burr.csproj +++ b/Burr/Burr.csproj @@ -32,16 +32,13 @@ - - - - + - +