diff --git a/Burr.Tests/Fixtures/Fixtures.cs b/Burr.Tests/Fixtures/Fixtures.cs
deleted file mode 100644
index fdd7f9d8..00000000
--- a/Burr.Tests/Fixtures/Fixtures.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-namespace Burr.Tests
-{
- public static class Fixtures
- {
- public static EmbeddedResource AuthorizationsJson =
- new EmbeddedResource(typeof (Fixtures).Assembly, "Burr.Tests.Fixtures.authorizations.json");
-
- public static EmbeddedResource AuthorizationJson =
- new EmbeddedResource(typeof (Fixtures).Assembly, "Burr.Tests.Fixtures.authorization.json");
-
- public static EmbeddedResource UserJson =
- new EmbeddedResource(typeof (Fixtures).Assembly, "Burr.Tests.Fixtures.user.json");
-
- public static EmbeddedResource UserFullJson =
- new EmbeddedResource(typeof (Fixtures).Assembly, "Burr.Tests.Fixtures.user_full.json");
-
- public static EmbeddedResource RepositoryJson =
- new EmbeddedResource(typeof (Fixtures).Assembly, "Burr.Tests.Fixtures.repository.json");
-
- public static EmbeddedResource RepositoriesJson =
- new EmbeddedResource(typeof(Fixtures).Assembly, "Burr.Tests.Fixtures.repositories.json");
- }
-}
diff --git a/Burr.Tests.Integration/Burr.Tests.Integration.csproj b/Nocto.Tests.Integration/Nocto.Tests.Integration.csproj
similarity index 93%
rename from Burr.Tests.Integration/Burr.Tests.Integration.csproj
rename to Nocto.Tests.Integration/Nocto.Tests.Integration.csproj
index 8927112d..80b21a68 100644
--- a/Burr.Tests.Integration/Burr.Tests.Integration.csproj
+++ b/Nocto.Tests.Integration/Nocto.Tests.Integration.csproj
@@ -7,8 +7,8 @@
{01687D54-1D87-4562-A721-C57F1C94052C}
Library
Properties
- Burr.Tests.Integration
- Burr.Tests.Integration
+ Nocto.Tests.Integration
+ Nocto.Tests.Integration
v4.5
512
@@ -50,9 +50,9 @@
-
+
{08dd4305-7787-4823-a53f-4d0f725a07f3}
- Burr
+ Nocto
diff --git a/Burr.Tests.Integration/Properties/AssemblyInfo.cs b/Nocto.Tests.Integration/Properties/AssemblyInfo.cs
similarity index 92%
rename from Burr.Tests.Integration/Properties/AssemblyInfo.cs
rename to Nocto.Tests.Integration/Properties/AssemblyInfo.cs
index 00a4a031..6649e53e 100644
--- a/Burr.Tests.Integration/Properties/AssemblyInfo.cs
+++ b/Nocto.Tests.Integration/Properties/AssemblyInfo.cs
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("Burr.Tests.Integration")]
+[assembly: AssemblyTitle("Nocto.Tests.Integration")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
-[assembly: AssemblyProduct("Burr.Tests.Integration")]
+[assembly: AssemblyProduct("Nocto.Tests.Integration")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
diff --git a/Burr.Tests.Integration/Readme.cs b/Nocto.Tests.Integration/Readme.cs
similarity index 99%
rename from Burr.Tests.Integration/Readme.cs
rename to Nocto.Tests.Integration/Readme.cs
index 7587c690..847b22e3 100644
--- a/Burr.Tests.Integration/Readme.cs
+++ b/Nocto.Tests.Integration/Readme.cs
@@ -1,6 +1,6 @@
using System.Threading.Tasks;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class Readme
{
diff --git a/Burr.Tests.Integration/UsersEndpointTests.cs b/Nocto.Tests.Integration/UsersEndpointTests.cs
similarity index 97%
rename from Burr.Tests.Integration/UsersEndpointTests.cs
rename to Nocto.Tests.Integration/UsersEndpointTests.cs
index 98a4f617..9d4e640d 100644
--- a/Burr.Tests.Integration/UsersEndpointTests.cs
+++ b/Nocto.Tests.Integration/UsersEndpointTests.cs
@@ -2,7 +2,7 @@
using System.Threading.Tasks;
using Xunit;
-namespace Burr.Tests.Integration
+namespace Nocto.Tests.Integration
{
public class UsersEndpointTests
{
diff --git a/Burr.Tests.Integration/packages.config b/Nocto.Tests.Integration/packages.config
similarity index 100%
rename from Burr.Tests.Integration/packages.config
rename to Nocto.Tests.Integration/packages.config
diff --git a/Burr.Tests/AuthorizationsEndpointTests.cs b/Nocto.Tests/AuthorizationsEndpointTests.cs
similarity index 99%
rename from Burr.Tests/AuthorizationsEndpointTests.cs
rename to Nocto.Tests/AuthorizationsEndpointTests.cs
index 4b2b2dc5..86e49f76 100644
--- a/Burr.Tests/AuthorizationsEndpointTests.cs
+++ b/Nocto.Tests/AuthorizationsEndpointTests.cs
@@ -3,14 +3,14 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using Nocto.Http;
using Xunit;
using FluentAssertions;
using Xunit.Extensions;
using Moq;
-using Burr.Http;
-using Burr.Tests.TestHelpers;
+using Nocto.Tests.TestHelpers;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class AuthorizationsEndpointTests
{
diff --git a/Burr.Tests/Fixtures/EmbeddedResource.cs b/Nocto.Tests/Fixtures/EmbeddedResource.cs
similarity index 98%
rename from Burr.Tests/Fixtures/EmbeddedResource.cs
rename to Nocto.Tests/Fixtures/EmbeddedResource.cs
index 0b5907a7..42e461a3 100644
--- a/Burr.Tests/Fixtures/EmbeddedResource.cs
+++ b/Nocto.Tests/Fixtures/EmbeddedResource.cs
@@ -4,7 +4,7 @@ using System.Linq;
using System.Reflection;
using System.Text;
-namespace Burr.Tests
+namespace Nocto.Tests
{
///
/// Helper class for handling our embedded resources.
diff --git a/Nocto.Tests/Fixtures/Fixtures.cs b/Nocto.Tests/Fixtures/Fixtures.cs
new file mode 100644
index 00000000..48a8d8a2
--- /dev/null
+++ b/Nocto.Tests/Fixtures/Fixtures.cs
@@ -0,0 +1,23 @@
+namespace Nocto.Tests
+{
+ public static class Fixtures
+ {
+ public static EmbeddedResource AuthorizationsJson =
+ new EmbeddedResource(typeof (Fixtures).Assembly, "Nocto.Tests.Fixtures.authorizations.json");
+
+ public static EmbeddedResource AuthorizationJson =
+ new EmbeddedResource(typeof (Fixtures).Assembly, "Nocto.Tests.Fixtures.authorization.json");
+
+ public static EmbeddedResource UserJson =
+ new EmbeddedResource(typeof (Fixtures).Assembly, "Nocto.Tests.Fixtures.user.json");
+
+ public static EmbeddedResource UserFullJson =
+ new EmbeddedResource(typeof (Fixtures).Assembly, "Nocto.Tests.Fixtures.user_full.json");
+
+ public static EmbeddedResource RepositoryJson =
+ new EmbeddedResource(typeof (Fixtures).Assembly, "Nocto.Tests.Fixtures.repository.json");
+
+ public static EmbeddedResource RepositoriesJson =
+ new EmbeddedResource(typeof(Fixtures).Assembly, "Nocto.Tests.Fixtures.repositories.json");
+ }
+}
diff --git a/Burr.Tests/Fixtures/authorization.json b/Nocto.Tests/Fixtures/authorization.json
similarity index 100%
rename from Burr.Tests/Fixtures/authorization.json
rename to Nocto.Tests/Fixtures/authorization.json
diff --git a/Burr.Tests/Fixtures/authorizations.json b/Nocto.Tests/Fixtures/authorizations.json
similarity index 100%
rename from Burr.Tests/Fixtures/authorizations.json
rename to Nocto.Tests/Fixtures/authorizations.json
diff --git a/Burr.Tests/Fixtures/repositories.json b/Nocto.Tests/Fixtures/repositories.json
similarity index 100%
rename from Burr.Tests/Fixtures/repositories.json
rename to Nocto.Tests/Fixtures/repositories.json
diff --git a/Burr.Tests/Fixtures/repository.json b/Nocto.Tests/Fixtures/repository.json
similarity index 100%
rename from Burr.Tests/Fixtures/repository.json
rename to Nocto.Tests/Fixtures/repository.json
diff --git a/Burr.Tests/Fixtures/user.json b/Nocto.Tests/Fixtures/user.json
similarity index 100%
rename from Burr.Tests/Fixtures/user.json
rename to Nocto.Tests/Fixtures/user.json
diff --git a/Burr.Tests/Fixtures/user_full.json b/Nocto.Tests/Fixtures/user_full.json
similarity index 100%
rename from Burr.Tests/Fixtures/user_full.json
rename to Nocto.Tests/Fixtures/user_full.json
diff --git a/Burr.Tests/GitHubClientTests.cs b/Nocto.Tests/GitHubClientTests.cs
similarity index 99%
rename from Burr.Tests/GitHubClientTests.cs
rename to Nocto.Tests/GitHubClientTests.cs
index f77566e9..56d7723c 100644
--- a/Burr.Tests/GitHubClientTests.cs
+++ b/Nocto.Tests/GitHubClientTests.cs
@@ -3,13 +3,13 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using Nocto.Http;
using Xunit;
using FluentAssertions;
using Xunit.Extensions;
using Moq;
-using Burr.Http;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class GitHubClientTests
{
diff --git a/Burr.Tests/Helpers/EnsureTests.cs b/Nocto.Tests/Helpers/EnsureTests.cs
similarity index 96%
rename from Burr.Tests/Helpers/EnsureTests.cs
rename to Nocto.Tests/Helpers/EnsureTests.cs
index fed7986f..90657cb2 100644
--- a/Burr.Tests/Helpers/EnsureTests.cs
+++ b/Nocto.Tests/Helpers/EnsureTests.cs
@@ -1,10 +1,10 @@
using System;
-using Burr.Helpers;
using FluentAssertions;
+using Nocto.Helpers;
using Xunit;
using Xunit.Extensions;
-namespace Burr.Tests.Helpers
+namespace Nocto.Tests.Helpers
{
public class EnsureTests
{
diff --git a/Burr.Tests/Helpers/StringExtensionsTests.cs b/Nocto.Tests/Helpers/StringExtensionsTests.cs
similarity index 96%
rename from Burr.Tests/Helpers/StringExtensionsTests.cs
rename to Nocto.Tests/Helpers/StringExtensionsTests.cs
index eb002492..6df05d3a 100644
--- a/Burr.Tests/Helpers/StringExtensionsTests.cs
+++ b/Nocto.Tests/Helpers/StringExtensionsTests.cs
@@ -1,10 +1,10 @@
using System;
-using Burr.Helpers;
+using Nocto.Helpers;
using FluentAssertions;
using Xunit;
using Xunit.Extensions;
-namespace Burr.Tests.Helpers
+namespace Nocto.Tests.Helpers
{
public class StringExtensionsTests
{
diff --git a/Burr.Tests/Http/BuilderTests.cs b/Nocto.Tests/Http/BuilderTests.cs
similarity index 98%
rename from Burr.Tests/Http/BuilderTests.cs
rename to Nocto.Tests/Http/BuilderTests.cs
index 9e703510..7f063f1a 100644
--- a/Burr.Tests/Http/BuilderTests.cs
+++ b/Nocto.Tests/Http/BuilderTests.cs
@@ -1,13 +1,13 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Burr.Http;
-using Burr.Tests.TestHelpers;
using FluentAssertions;
using Moq;
+using Nocto.Http;
+using Nocto.Tests.TestHelpers;
using Xunit;
-namespace Burr.Tests.Http
+namespace Nocto.Tests.Http
{
public class BuilderTests
{
diff --git a/Burr.Tests/Http/ConnectionTests.cs b/Nocto.Tests/Http/ConnectionTests.cs
similarity index 98%
rename from Burr.Tests/Http/ConnectionTests.cs
rename to Nocto.Tests/Http/ConnectionTests.cs
index 285d75e7..8cc38273 100644
--- a/Burr.Tests/Http/ConnectionTests.cs
+++ b/Nocto.Tests/Http/ConnectionTests.cs
@@ -3,14 +3,14 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
-using Burr.Http;
+using Nocto.Http;
+using Nocto.Tests.TestHelpers;
using Xunit;
using Xunit.Extensions;
using FluentAssertions;
using Moq;
-using Burr.Tests.TestHelpers;
-namespace Burr.Tests.Http
+namespace Nocto.Tests.Http
{
public class ConnectionTests
{
diff --git a/Burr.Tests/Http/RequestTests.cs b/Nocto.Tests/Http/RequestTests.cs
similarity index 81%
rename from Burr.Tests/Http/RequestTests.cs
rename to Nocto.Tests/Http/RequestTests.cs
index cdc13671..aa722a90 100644
--- a/Burr.Tests/Http/RequestTests.cs
+++ b/Nocto.Tests/Http/RequestTests.cs
@@ -1,8 +1,8 @@
-using Burr.Http;
-using FluentAssertions;
+using FluentAssertions;
+using Nocto.Http;
using Xunit;
-namespace Burr.Tests.Http
+namespace Nocto.Tests.Http
{
public class RequestTests
{
diff --git a/Burr.Tests/Http/ResponseTests.cs b/Nocto.Tests/Http/ResponseTests.cs
similarity index 81%
rename from Burr.Tests/Http/ResponseTests.cs
rename to Nocto.Tests/Http/ResponseTests.cs
index 138b19b6..762873b0 100644
--- a/Burr.Tests/Http/ResponseTests.cs
+++ b/Nocto.Tests/Http/ResponseTests.cs
@@ -1,8 +1,8 @@
-using Burr.Http;
-using FluentAssertions;
+using FluentAssertions;
+using Nocto.Http;
using Xunit;
-namespace Burr.Tests.Http
+namespace Nocto.Tests.Http
{
public class ResponseTests
{
diff --git a/Burr.Tests/Http/SurroundHandlerTests.cs b/Nocto.Tests/Http/SurroundHandlerTests.cs
similarity index 95%
rename from Burr.Tests/Http/SurroundHandlerTests.cs
rename to Nocto.Tests/Http/SurroundHandlerTests.cs
index 41d198ed..32a156ad 100644
--- a/Burr.Tests/Http/SurroundHandlerTests.cs
+++ b/Nocto.Tests/Http/SurroundHandlerTests.cs
@@ -1,15 +1,15 @@
using System;
using System.Threading.Tasks;
-using Burr.Http;
using FluentAssertions;
using Moq;
+using Nocto.Http;
using Xunit;
-namespace Burr.Tests.Http
+namespace Nocto.Tests.Http
{
public class SurroundHandlerTests
{
- public class MockSurroundHandler : Burr.Http.Middleware
+ public class MockSurroundHandler : Nocto.Http.Middleware
{
public MockSurroundHandler(IApplication app)
: base(app)
diff --git a/Burr.Tests/Middleware/ApiInfoParserTests.cs b/Nocto.Tests/Middleware/ApiInfoParserTests.cs
similarity index 98%
rename from Burr.Tests/Middleware/ApiInfoParserTests.cs
rename to Nocto.Tests/Middleware/ApiInfoParserTests.cs
index 8c7a4fc2..4d65cfe1 100644
--- a/Burr.Tests/Middleware/ApiInfoParserTests.cs
+++ b/Nocto.Tests/Middleware/ApiInfoParserTests.cs
@@ -1,11 +1,11 @@
using System;
using System.Threading.Tasks;
-using Burr.Http;
-using Burr.Tests.TestHelpers;
+using Nocto.Tests.TestHelpers;
using FluentAssertions;
+using Nocto.Http;
using Xunit;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class ApiInfoParserTests
{
diff --git a/Burr.Tests/Middleware/BasicAuthenticationTests.cs b/Nocto.Tests/Middleware/BasicAuthenticationTests.cs
similarity index 95%
rename from Burr.Tests/Middleware/BasicAuthenticationTests.cs
rename to Nocto.Tests/Middleware/BasicAuthenticationTests.cs
index ea44f89b..1566c8b3 100644
--- a/Burr.Tests/Middleware/BasicAuthenticationTests.cs
+++ b/Nocto.Tests/Middleware/BasicAuthenticationTests.cs
@@ -1,12 +1,12 @@
using System;
using System.Threading.Tasks;
-using Burr.Http;
-using Burr.Tests.TestHelpers;
using FluentAssertions;
using Moq;
+using Nocto.Http;
+using Nocto.Tests.TestHelpers;
using Xunit;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class BasicAuthenticationTests
{
diff --git a/Burr.Tests/Middleware/SimpleJsonParserTests.cs b/Nocto.Tests/Middleware/SimpleJsonParserTests.cs
similarity index 96%
rename from Burr.Tests/Middleware/SimpleJsonParserTests.cs
rename to Nocto.Tests/Middleware/SimpleJsonParserTests.cs
index 0af85ad8..8a3c2f51 100644
--- a/Burr.Tests/Middleware/SimpleJsonParserTests.cs
+++ b/Nocto.Tests/Middleware/SimpleJsonParserTests.cs
@@ -1,13 +1,13 @@
using System;
using System.Threading.Tasks;
-using Burr.Http;
-using Burr.Middleware;
-using Burr.Tests.TestHelpers;
using FluentAssertions;
using Moq;
+using Nocto.Http;
+using Nocto.Middleware;
+using Nocto.Tests.TestHelpers;
using Xunit;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class SimpleJsonResponseHandlerTests
{
diff --git a/Burr.Tests/Middleware/TokenAuthenticationTests.cs b/Nocto.Tests/Middleware/TokenAuthenticationTests.cs
similarity index 94%
rename from Burr.Tests/Middleware/TokenAuthenticationTests.cs
rename to Nocto.Tests/Middleware/TokenAuthenticationTests.cs
index e5fb1fdb..8c544ce1 100644
--- a/Burr.Tests/Middleware/TokenAuthenticationTests.cs
+++ b/Nocto.Tests/Middleware/TokenAuthenticationTests.cs
@@ -1,12 +1,12 @@
using System;
using System.Threading.Tasks;
-using Burr.Http;
-using Burr.Tests.TestHelpers;
using FluentAssertions;
using Moq;
+using Nocto.Http;
+using Nocto.Tests.TestHelpers;
using Xunit;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class TokenAuthenticationTests
{
diff --git a/Burr.Tests/Burr.Tests.csproj b/Nocto.Tests/Nocto.Tests.csproj
similarity index 96%
rename from Burr.Tests/Burr.Tests.csproj
rename to Nocto.Tests/Nocto.Tests.csproj
index 31046bb7..f4b86542 100644
--- a/Burr.Tests/Burr.Tests.csproj
+++ b/Nocto.Tests/Nocto.Tests.csproj
@@ -7,8 +7,8 @@
{149448D4-C2F2-4DF9-86BD-03E3272F093B}
Library
Properties
- Burr.Tests
- Burr.Tests
+ Nocto.Tests
+ Nocto.Tests
v4.5
512
@@ -76,9 +76,9 @@
-
+
{08dd4305-7787-4823-a53f-4d0f725a07f3}
- Burr
+ Nocto
diff --git a/Burr.Tests/Burr.Tests.csproj.DotSettings b/Nocto.Tests/Nocto.Tests.csproj.DotSettings
similarity index 100%
rename from Burr.Tests/Burr.Tests.csproj.DotSettings
rename to Nocto.Tests/Nocto.Tests.csproj.DotSettings
diff --git a/Burr.Tests/Properties/AssemblyInfo.cs b/Nocto.Tests/Properties/AssemblyInfo.cs
similarity index 94%
rename from Burr.Tests/Properties/AssemblyInfo.cs
rename to Nocto.Tests/Properties/AssemblyInfo.cs
index 45f4f248..81a3a750 100644
--- a/Burr.Tests/Properties/AssemblyInfo.cs
+++ b/Nocto.Tests/Properties/AssemblyInfo.cs
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("Burr.Tests")]
+[assembly: AssemblyTitle("Nocto.Tests")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
-[assembly: AssemblyProduct("Burr.Tests")]
+[assembly: AssemblyProduct("Nocto.Tests")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
diff --git a/Burr.Tests/Queryable/AggregateQueryTests.cs b/Nocto.Tests/Queryable/AggregateQueryTests.cs
similarity index 100%
rename from Burr.Tests/Queryable/AggregateQueryTests.cs
rename to Nocto.Tests/Queryable/AggregateQueryTests.cs
diff --git a/Burr.Tests/RepositoriesEndpointTests.cs b/Nocto.Tests/RepositoriesEndpointTests.cs
similarity index 97%
rename from Burr.Tests/RepositoriesEndpointTests.cs
rename to Nocto.Tests/RepositoriesEndpointTests.cs
index 3fcac9e5..95eb1bbf 100644
--- a/Burr.Tests/RepositoriesEndpointTests.cs
+++ b/Nocto.Tests/RepositoriesEndpointTests.cs
@@ -1,12 +1,12 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Burr.Http;
using FluentAssertions;
using Moq;
+using Nocto.Http;
using Xunit;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class RepositoriesEndpointTests
{
diff --git a/Burr.Tests/SimpleJsonSerializerTests.cs b/Nocto.Tests/SimpleJsonSerializerTests.cs
similarity index 93%
rename from Burr.Tests/SimpleJsonSerializerTests.cs
rename to Nocto.Tests/SimpleJsonSerializerTests.cs
index 7ed95794..c50754f1 100644
--- a/Burr.Tests/SimpleJsonSerializerTests.cs
+++ b/Nocto.Tests/SimpleJsonSerializerTests.cs
@@ -1,8 +1,8 @@
-using Burr.Middleware;
-using FluentAssertions;
+using FluentAssertions;
+using Nocto.Middleware;
using Xunit;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class SimpleJsonSerializerTests
{
diff --git a/Burr.Tests/TestHelpers/MoqExtensions.cs b/Nocto.Tests/TestHelpers/MoqExtensions.cs
similarity index 92%
rename from Burr.Tests/TestHelpers/MoqExtensions.cs
rename to Nocto.Tests/TestHelpers/MoqExtensions.cs
index ef9d8343..09db5396 100644
--- a/Burr.Tests/TestHelpers/MoqExtensions.cs
+++ b/Nocto.Tests/TestHelpers/MoqExtensions.cs
@@ -1,9 +1,9 @@
using System;
using System.Threading.Tasks;
-using Burr.Http;
using Moq;
+using Nocto.Http;
-namespace Burr.Tests.TestHelpers
+namespace Nocto.Tests.TestHelpers
{
public static class MoqExtensions
{
diff --git a/Burr.Tests/TestHelpers/Stubs.cs b/Nocto.Tests/TestHelpers/Stubs.cs
similarity index 85%
rename from Burr.Tests/TestHelpers/Stubs.cs
rename to Nocto.Tests/TestHelpers/Stubs.cs
index 4280c437..c1acbddf 100644
--- a/Burr.Tests/TestHelpers/Stubs.cs
+++ b/Nocto.Tests/TestHelpers/Stubs.cs
@@ -1,8 +1,8 @@
using System.Threading.Tasks;
-using Burr.Http;
using Moq;
+using Nocto.Http;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class StubEnv : Env
{
diff --git a/Burr.Tests/UsersEndpointTests.cs b/Nocto.Tests/UsersEndpointTests.cs
similarity index 98%
rename from Burr.Tests/UsersEndpointTests.cs
rename to Nocto.Tests/UsersEndpointTests.cs
index b5c4af9d..31fcf69a 100644
--- a/Burr.Tests/UsersEndpointTests.cs
+++ b/Nocto.Tests/UsersEndpointTests.cs
@@ -3,14 +3,14 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using Nocto.Http;
using Xunit;
using FluentAssertions;
using Xunit.Extensions;
using Moq;
-using Burr.Http;
-using Burr.Tests.TestHelpers;
+using Nocto.Tests.TestHelpers;
-namespace Burr.Tests
+namespace Nocto.Tests
{
public class UsersEndpointTests
{
diff --git a/Burr.Tests/packages.config b/Nocto.Tests/packages.config
similarity index 100%
rename from Burr.Tests/packages.config
rename to Nocto.Tests/packages.config
diff --git a/Burr.ruleset b/Nocto.ruleset
similarity index 100%
rename from Burr.ruleset
rename to Nocto.ruleset
diff --git a/Burr.sln b/Nocto.sln
similarity index 87%
rename from Burr.sln
rename to Nocto.sln
index 45d25ebb..5d92cce1 100644
--- a/Burr.sln
+++ b/Nocto.sln
@@ -1,11 +1,11 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 11
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Burr", "Burr\Burr.csproj", "{08DD4305-7787-4823-A53F-4D0F725A07F3}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nocto", "Nocto\Nocto.csproj", "{08DD4305-7787-4823-A53F-4D0F725A07F3}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Burr.Tests", "Burr.Tests\Burr.Tests.csproj", "{149448D4-C2F2-4DF9-86BD-03E3272F093B}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nocto.Tests", "Nocto.Tests\Nocto.Tests.csproj", "{149448D4-C2F2-4DF9-86BD-03E3272F093B}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Burr.Tests.Integration", "Burr.Tests.Integration\Burr.Tests.Integration.csproj", "{01687D54-1D87-4562-A721-C57F1C94052C}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nocto.Tests.Integration", "Nocto.Tests.Integration\Nocto.Tests.Integration.csproj", "{01687D54-1D87-4562-A721-C57F1C94052C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
diff --git a/Burr.sln.DotSettings b/Nocto.sln.DotSettings
similarity index 100%
rename from Burr.sln.DotSettings
rename to Nocto.sln.DotSettings
diff --git a/Burr/AuthenticationException.cs b/Nocto/AuthenticationException.cs
similarity index 97%
rename from Burr/AuthenticationException.cs
rename to Nocto/AuthenticationException.cs
index acd31def..ff33b740 100644
--- a/Burr/AuthenticationException.cs
+++ b/Nocto/AuthenticationException.cs
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;
-namespace Burr
+namespace Nocto
{
[Serializable]
public class AuthenticationException : Exception
diff --git a/Burr/AuthenticationType.cs b/Nocto/AuthenticationType.cs
similarity index 93%
rename from Burr/AuthenticationType.cs
rename to Nocto/AuthenticationType.cs
index 141ac544..84cf4148 100644
--- a/Burr/AuthenticationType.cs
+++ b/Nocto/AuthenticationType.cs
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
-namespace Burr
+namespace Nocto
{
public enum AuthenticationType
{
diff --git a/Burr/AuthorizationsEndpoint.cs b/Nocto/AuthorizationsEndpoint.cs
similarity index 98%
rename from Burr/AuthorizationsEndpoint.cs
rename to Nocto/AuthorizationsEndpoint.cs
index 39e4ef9e..c8e5386d 100644
--- a/Burr/AuthorizationsEndpoint.cs
+++ b/Nocto/AuthorizationsEndpoint.cs
@@ -1,9 +1,9 @@
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
-using Burr.Helpers;
+using Nocto.Helpers;
-namespace Burr
+namespace Nocto
{
public class AuthorizationsEndpoint : IAuthorizationsEndpoint
{
diff --git a/Burr/GitHubClient.cs b/Nocto/GitHubClient.cs
similarity index 98%
rename from Burr/GitHubClient.cs
rename to Nocto/GitHubClient.cs
index 5d4e598c..cd7a8995 100644
--- a/Burr/GitHubClient.cs
+++ b/Nocto/GitHubClient.cs
@@ -1,9 +1,9 @@
using System;
-using Burr.Helpers;
-using Burr.Http;
-using Burr.Middleware;
+using Nocto.Helpers;
+using Nocto.Http;
+using Nocto.Middleware;
-namespace Burr
+namespace Nocto
{
///
/// A Client for the GitHub API v3. You can read more about the api here: http://developer.github.com.
diff --git a/Burr/GitHubModels.cs b/Nocto/GitHubModels.cs
similarity index 99%
rename from Burr/GitHubModels.cs
rename to Nocto/GitHubModels.cs
index c1af9f73..b0642175 100644
--- a/Burr/GitHubModels.cs
+++ b/Nocto/GitHubModels.cs
@@ -1,7 +1,7 @@
using System;
using System.Diagnostics.CodeAnalysis;
-namespace Burr
+namespace Nocto
{
///
/// Represents an ouath application.
diff --git a/Burr/Helpers/Ensure.cs b/Nocto/Helpers/Ensure.cs
similarity index 98%
rename from Burr/Helpers/Ensure.cs
rename to Nocto/Helpers/Ensure.cs
index de5342bd..5868e39b 100644
--- a/Burr/Helpers/Ensure.cs
+++ b/Nocto/Helpers/Ensure.cs
@@ -1,6 +1,6 @@
using System;
-namespace Burr.Helpers
+namespace Nocto.Helpers
{
///
/// Ensure input parameters
diff --git a/Burr/Helpers/StringExtensions.cs b/Nocto/Helpers/StringExtensions.cs
similarity index 98%
rename from Burr/Helpers/StringExtensions.cs
rename to Nocto/Helpers/StringExtensions.cs
index 40b4aa8b..65f10da9 100644
--- a/Burr/Helpers/StringExtensions.cs
+++ b/Nocto/Helpers/StringExtensions.cs
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
-namespace Burr.Helpers
+namespace Nocto.Helpers
{
public static class StringExtensions
{
diff --git a/Burr/Http/Builder.cs b/Nocto/Http/Builder.cs
similarity index 97%
rename from Burr/Http/Builder.cs
rename to Nocto/Http/Builder.cs
index 5f476419..0892c5ae 100644
--- a/Burr/Http/Builder.cs
+++ b/Nocto/Http/Builder.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using Burr.Helpers;
+using Nocto.Helpers;
-namespace Burr.Http
+namespace Nocto.Http
{
///
/// Standard Implementation of a .
diff --git a/Burr/Http/Connection.cs b/Nocto/Http/Connection.cs
similarity index 98%
rename from Burr/Http/Connection.cs
rename to Nocto/Http/Connection.cs
index 8f6e7315..7f9ff796 100644
--- a/Burr/Http/Connection.cs
+++ b/Nocto/Http/Connection.cs
@@ -1,8 +1,8 @@
using System;
using System.Threading.Tasks;
-using Burr.Helpers;
+using Nocto.Helpers;
-namespace Burr.Http
+namespace Nocto.Http
{
public class Connection : IConnection
{
diff --git a/Burr/Http/Env.cs b/Nocto/Http/Env.cs
similarity index 87%
rename from Burr/Http/Env.cs
rename to Nocto/Http/Env.cs
index 530d6d7f..4ba3827d 100644
--- a/Burr/Http/Env.cs
+++ b/Nocto/Http/Env.cs
@@ -1,5 +1,5 @@
-namespace Burr.Http
+namespace Nocto.Http
{
public class Env
{
diff --git a/Burr/Http/IApplication.cs b/Nocto/Http/IApplication.cs
similarity index 86%
rename from Burr/Http/IApplication.cs
rename to Nocto/Http/IApplication.cs
index 6ca0497c..b31d1eca 100644
--- a/Burr/Http/IApplication.cs
+++ b/Nocto/Http/IApplication.cs
@@ -1,6 +1,6 @@
using System.Threading.Tasks;
-namespace Burr.Http
+namespace Nocto.Http
{
public interface IApplication
{
diff --git a/Burr/Http/IBuilder.cs b/Nocto/Http/IBuilder.cs
similarity index 94%
rename from Burr/Http/IBuilder.cs
rename to Nocto/Http/IBuilder.cs
index 6e491b88..7271ea38 100644
--- a/Burr/Http/IBuilder.cs
+++ b/Nocto/Http/IBuilder.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace Burr.Http
+namespace Nocto.Http
{
///
/// A 's job is to build up the "application" for a connection.
diff --git a/Burr/Http/IConnection.cs b/Nocto/Http/IConnection.cs
similarity index 96%
rename from Burr/Http/IConnection.cs
rename to Nocto/Http/IConnection.cs
index 5307991b..7d272fd2 100644
--- a/Burr/Http/IConnection.cs
+++ b/Nocto/Http/IConnection.cs
@@ -2,7 +2,7 @@
using System.Diagnostics.CodeAnalysis;
using System.Threading.Tasks;
-namespace Burr.Http
+namespace Nocto.Http
{
public interface IConnection
{
diff --git a/Burr/Http/IRequest.cs b/Nocto/Http/IRequest.cs
similarity index 94%
rename from Burr/Http/IRequest.cs
rename to Nocto/Http/IRequest.cs
index 3cbb0679..6dd7f5bf 100644
--- a/Burr/Http/IRequest.cs
+++ b/Nocto/Http/IRequest.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace Burr.Http
+namespace Nocto.Http
{
public interface IRequest
{
diff --git a/Burr/Http/IResponse.cs b/Nocto/Http/IResponse.cs
similarity index 92%
rename from Burr/Http/IResponse.cs
rename to Nocto/Http/IResponse.cs
index ab1bd952..c09b1bb0 100644
--- a/Burr/Http/IResponse.cs
+++ b/Nocto/Http/IResponse.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace Burr.Http
+namespace Nocto.Http
{
public interface IResponse
{
diff --git a/Burr/Http/Middleware.cs b/Nocto/Http/Middleware.cs
similarity index 93%
rename from Burr/Http/Middleware.cs
rename to Nocto/Http/Middleware.cs
index 900b80c6..a65c06c1 100644
--- a/Burr/Http/Middleware.cs
+++ b/Nocto/Http/Middleware.cs
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
-using Burr.Helpers;
+using Nocto.Helpers;
-namespace Burr.Http
+namespace Nocto.Http
{
public abstract class Middleware : IApplication
{
diff --git a/Burr/Http/Request.cs b/Nocto/Http/Request.cs
similarity index 96%
rename from Burr/Http/Request.cs
rename to Nocto/Http/Request.cs
index 781631ce..690c347f 100644
--- a/Burr/Http/Request.cs
+++ b/Nocto/Http/Request.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace Burr.Http
+namespace Nocto.Http
{
public class Request : IRequest
{
diff --git a/Burr/Http/Response.cs b/Nocto/Http/Response.cs
similarity index 95%
rename from Burr/Http/Response.cs
rename to Nocto/Http/Response.cs
index 8e88b109..7e3c4c5b 100644
--- a/Burr/Http/Response.cs
+++ b/Nocto/Http/Response.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace Burr.Http
+namespace Nocto.Http
{
public class Response : IResponse
{
diff --git a/Burr/IAuthorizationsEndpoint.cs b/Nocto/IAuthorizationsEndpoint.cs
similarity index 96%
rename from Burr/IAuthorizationsEndpoint.cs
rename to Nocto/IAuthorizationsEndpoint.cs
index 5a33b383..4938f12f 100644
--- a/Burr/IAuthorizationsEndpoint.cs
+++ b/Nocto/IAuthorizationsEndpoint.cs
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
-namespace Burr
+namespace Nocto
{
public interface IAuthorizationsEndpoint
{
diff --git a/Burr/IGitHubClient.cs b/Nocto/IGitHubClient.cs
similarity index 79%
rename from Burr/IGitHubClient.cs
rename to Nocto/IGitHubClient.cs
index 149b668d..a6ead5f8 100644
--- a/Burr/IGitHubClient.cs
+++ b/Nocto/IGitHubClient.cs
@@ -1,6 +1,6 @@
-using Burr.Http;
+using Nocto.Http;
-namespace Burr
+namespace Nocto
{
public interface IGitHubClient
{
diff --git a/Burr/IGitHubEntity.cs b/Nocto/IGitHubEntity.cs
similarity index 95%
rename from Burr/IGitHubEntity.cs
rename to Nocto/IGitHubEntity.cs
index 3ae9ca59..c1a262bc 100644
--- a/Burr/IGitHubEntity.cs
+++ b/Nocto/IGitHubEntity.cs
@@ -1,6 +1,6 @@
using System.Diagnostics.CodeAnalysis;
-namespace Burr
+namespace Nocto
{
///
/// Marker interface for GitHub API Entities.
diff --git a/Burr/IRepositoriesEndpoint.cs b/Nocto/IRepositoriesEndpoint.cs
similarity index 91%
rename from Burr/IRepositoriesEndpoint.cs
rename to Nocto/IRepositoriesEndpoint.cs
index 9f906245..6fdc96e0 100644
--- a/Burr/IRepositoriesEndpoint.cs
+++ b/Nocto/IRepositoriesEndpoint.cs
@@ -1,6 +1,6 @@
using System.Threading.Tasks;
-namespace Burr
+namespace Nocto
{
public interface IRepositoriesEndpoint
{
diff --git a/Burr/IUsersEndpoint.cs b/Nocto/IUsersEndpoint.cs
similarity index 98%
rename from Burr/IUsersEndpoint.cs
rename to Nocto/IUsersEndpoint.cs
index d3b6bdc5..88f32be7 100644
--- a/Burr/IUsersEndpoint.cs
+++ b/Nocto/IUsersEndpoint.cs
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
-namespace Burr
+namespace Nocto
{
public interface IUsersEndpoint
{
diff --git a/Burr/Middleware/ApiInfo.cs b/Nocto/Middleware/ApiInfo.cs
similarity index 98%
rename from Burr/Middleware/ApiInfo.cs
rename to Nocto/Middleware/ApiInfo.cs
index 102b88c8..cbe012c4 100644
--- a/Burr/Middleware/ApiInfo.cs
+++ b/Nocto/Middleware/ApiInfo.cs
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
-namespace Burr.Http
+namespace Nocto.Http
{
///
/// Extra information returned as part of each api response.
diff --git a/Burr/Middleware/ApiInfoExtensions.cs b/Nocto/Middleware/ApiInfoExtensions.cs
similarity index 96%
rename from Burr/Middleware/ApiInfoExtensions.cs
rename to Nocto/Middleware/ApiInfoExtensions.cs
index 829276f4..1280a0fa 100644
--- a/Burr/Middleware/ApiInfoExtensions.cs
+++ b/Nocto/Middleware/ApiInfoExtensions.cs
@@ -1,7 +1,7 @@
using System;
using System.Text.RegularExpressions;
-namespace Burr.Http
+namespace Nocto.Http
{
public static class ApiInfoExtensions
{
diff --git a/Burr/Middleware/ApiInfoParser.cs b/Nocto/Middleware/ApiInfoParser.cs
similarity index 99%
rename from Burr/Middleware/ApiInfoParser.cs
rename to Nocto/Middleware/ApiInfoParser.cs
index f4846988..0d48c031 100644
--- a/Burr/Middleware/ApiInfoParser.cs
+++ b/Nocto/Middleware/ApiInfoParser.cs
@@ -7,7 +7,7 @@ using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
-namespace Burr.Http
+namespace Nocto.Http
{
public class ApiInfoParser : Middleware
{
diff --git a/Burr/Middleware/BasicAuthentication.cs b/Nocto/Middleware/BasicAuthentication.cs
similarity index 95%
rename from Burr/Middleware/BasicAuthentication.cs
rename to Nocto/Middleware/BasicAuthentication.cs
index f157484f..62bdb896 100644
--- a/Burr/Middleware/BasicAuthentication.cs
+++ b/Nocto/Middleware/BasicAuthentication.cs
@@ -1,9 +1,9 @@
using System;
using System.Globalization;
using System.Text;
-using Burr.Helpers;
+using Nocto.Helpers;
-namespace Burr.Http
+namespace Nocto.Http
{
public class BasicAuthentication : Middleware
{
diff --git a/Burr/Middleware/GitHubResponse.cs b/Nocto/Middleware/GitHubResponse.cs
similarity index 84%
rename from Burr/Middleware/GitHubResponse.cs
rename to Nocto/Middleware/GitHubResponse.cs
index a1583b2b..3d53f4de 100644
--- a/Burr/Middleware/GitHubResponse.cs
+++ b/Nocto/Middleware/GitHubResponse.cs
@@ -1,5 +1,5 @@
-namespace Burr.Http
+namespace Nocto.Http
{
public class GitHubResponse : Response
{
diff --git a/Burr/Middleware/HttpClientAdapter.cs b/Nocto/Middleware/HttpClientAdapter.cs
similarity index 98%
rename from Burr/Middleware/HttpClientAdapter.cs
rename to Nocto/Middleware/HttpClientAdapter.cs
index ff59a7b2..9997ca99 100644
--- a/Burr/Middleware/HttpClientAdapter.cs
+++ b/Nocto/Middleware/HttpClientAdapter.cs
@@ -5,7 +5,7 @@ using System.Text;
using System.Threading;
using System.Threading.Tasks;
-namespace Burr.Http
+namespace Nocto.Http
{
public class HttpClientAdapter : IApplication
{
diff --git a/Burr/Middleware/IJsonSerializer.cs b/Nocto/Middleware/IJsonSerializer.cs
similarity index 81%
rename from Burr/Middleware/IJsonSerializer.cs
rename to Nocto/Middleware/IJsonSerializer.cs
index 7e9a7fa4..7ce1cbf1 100644
--- a/Burr/Middleware/IJsonSerializer.cs
+++ b/Nocto/Middleware/IJsonSerializer.cs
@@ -1,4 +1,4 @@
-namespace Burr.Middleware
+namespace Nocto.Middleware
{
public interface IJsonSerializer
{
diff --git a/Burr/Middleware/SimpleJsonParser.cs b/Nocto/Middleware/SimpleJsonParser.cs
similarity index 92%
rename from Burr/Middleware/SimpleJsonParser.cs
rename to Nocto/Middleware/SimpleJsonParser.cs
index a8fb7393..f7928aba 100644
--- a/Burr/Middleware/SimpleJsonParser.cs
+++ b/Nocto/Middleware/SimpleJsonParser.cs
@@ -1,7 +1,7 @@
-using Burr.Helpers;
-using Burr.Middleware;
+using Nocto.Helpers;
+using Nocto.Middleware;
-namespace Burr.Http
+namespace Nocto.Http
{
public class SimpleJsonParser : Middleware
{
diff --git a/Burr/Middleware/SimpleJsonSerializer.cs b/Nocto/Middleware/SimpleJsonSerializer.cs
similarity index 93%
rename from Burr/Middleware/SimpleJsonSerializer.cs
rename to Nocto/Middleware/SimpleJsonSerializer.cs
index 9fa6f8fe..4e095dbe 100644
--- a/Burr/Middleware/SimpleJsonSerializer.cs
+++ b/Nocto/Middleware/SimpleJsonSerializer.cs
@@ -1,7 +1,7 @@
using System;
-using Burr.Helpers;
+using Nocto.Helpers;
-namespace Burr.Middleware
+namespace Nocto.Middleware
{
public class SimpleJsonSerializer : IJsonSerializer
{
diff --git a/Burr/Middleware/TokenAuthentication.cs b/Nocto/Middleware/TokenAuthentication.cs
similarity index 93%
rename from Burr/Middleware/TokenAuthentication.cs
rename to Nocto/Middleware/TokenAuthentication.cs
index 803397ac..8c5abfe7 100644
--- a/Burr/Middleware/TokenAuthentication.cs
+++ b/Nocto/Middleware/TokenAuthentication.cs
@@ -1,7 +1,7 @@
using System.Globalization;
-using Burr.Helpers;
+using Nocto.Helpers;
-namespace Burr.Http
+namespace Nocto.Http
{
public class TokenAuthentication : Middleware
{
diff --git a/Burr/Burr.csproj b/Nocto/Nocto.csproj
similarity index 96%
rename from Burr/Burr.csproj
rename to Nocto/Nocto.csproj
index 3be005a1..2e197e11 100644
--- a/Burr/Burr.csproj
+++ b/Nocto/Nocto.csproj
@@ -7,8 +7,8 @@
{08DD4305-7787-4823-A53F-4D0F725A07F3}
Library
Properties
- Burr
- Burr
+ Nocto
+ Nocto
v4.5
512
@@ -21,7 +21,7 @@
prompt
4
true
- ..\Burr.ruleset
+ ..\Nocto.ruleset
pdbonly
diff --git a/Burr/PagedList.cs b/Nocto/PagedList.cs
similarity index 96%
rename from Burr/PagedList.cs
rename to Nocto/PagedList.cs
index fd928491..aed35e05 100644
--- a/Burr/PagedList.cs
+++ b/Nocto/PagedList.cs
@@ -1,6 +1,6 @@
using System.Collections.Generic;
-namespace Burr
+namespace Nocto
{
public class PagedList
{
diff --git a/Burr/Properties/AssemblyInfo.cs b/Nocto/Properties/AssemblyInfo.cs
similarity index 80%
rename from Burr/Properties/AssemblyInfo.cs
rename to Nocto/Properties/AssemblyInfo.cs
index 98123d5b..45a03b3a 100644
--- a/Burr/Properties/AssemblyInfo.cs
+++ b/Nocto/Properties/AssemblyInfo.cs
@@ -1,15 +1,14 @@
using System.Reflection;
-using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("Burr")]
-[assembly: AssemblyDescription("")]
+[assembly: AssemblyTitle("Nocto")]
+[assembly: AssemblyDescription("A .NET client library for the GitHub API")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
-[assembly: AssemblyProduct("Burr")]
+[assembly: AssemblyProduct("Nocto")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -32,5 +31,6 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
+[assembly: AssemblyVersion("0.9.0.0")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
+[assembly: AssemblyInformationalVersion("1.0.0-alpha")]
\ No newline at end of file
diff --git a/Burr/QueryInterceptor/QueryTranslator.cs b/Nocto/QueryInterceptor/QueryTranslator.cs
similarity index 100%
rename from Burr/QueryInterceptor/QueryTranslator.cs
rename to Nocto/QueryInterceptor/QueryTranslator.cs
diff --git a/Burr/QueryInterceptor/QueryTranslatorProvider.cs b/Nocto/QueryInterceptor/QueryTranslatorProvider.cs
similarity index 100%
rename from Burr/QueryInterceptor/QueryTranslatorProvider.cs
rename to Nocto/QueryInterceptor/QueryTranslatorProvider.cs
diff --git a/Burr/QueryInterceptor/QueryableExtensions.cs b/Nocto/QueryInterceptor/QueryableExtensions.cs
similarity index 100%
rename from Burr/QueryInterceptor/QueryableExtensions.cs
rename to Nocto/QueryInterceptor/QueryableExtensions.cs
diff --git a/Burr/Queryable/AggregateQuery.cs b/Nocto/Queryable/AggregateQuery.cs
similarity index 100%
rename from Burr/Queryable/AggregateQuery.cs
rename to Nocto/Queryable/AggregateQuery.cs
diff --git a/Burr/RepositoriesEndpoint.cs b/Nocto/RepositoriesEndpoint.cs
similarity index 96%
rename from Burr/RepositoriesEndpoint.cs
rename to Nocto/RepositoriesEndpoint.cs
index e2e64d76..41f54713 100644
--- a/Burr/RepositoriesEndpoint.cs
+++ b/Nocto/RepositoriesEndpoint.cs
@@ -1,10 +1,10 @@
using System.Collections.Generic;
using System.Globalization;
using System.Threading.Tasks;
-using Burr.Helpers;
-using Burr.Http;
+using Nocto.Helpers;
+using Nocto.Http;
-namespace Burr
+namespace Nocto
{
public class RepositoriesEndpoint : IRepositoriesEndpoint
{
diff --git a/Burr/SimpleJson.cs b/Nocto/SimpleJson.cs
similarity index 99%
rename from Burr/SimpleJson.cs
rename to Nocto/SimpleJson.cs
index 2d9a902e..4a4f2d31 100644
--- a/Burr/SimpleJson.cs
+++ b/Nocto/SimpleJson.cs
@@ -61,12 +61,12 @@ using System.Globalization;
using System.Reflection;
using System.Runtime.Serialization;
using System.Text;
-using Burr.Reflection;
+using Nocto.Reflection;
// ReSharper disable LoopCanBeConvertedToQuery
// ReSharper disable RedundantExplicitArrayCreation
// ReSharper disable SuggestUseVarKeywordEvident
-namespace Burr
+namespace Nocto
{
///
/// Represents the json array.
@@ -477,7 +477,7 @@ namespace Burr
}
}
-namespace Burr
+namespace Nocto
{
///
/// This class encodes and decodes JSON strings.
diff --git a/Burr/UsersEndpoint.cs b/Nocto/UsersEndpoint.cs
similarity index 98%
rename from Burr/UsersEndpoint.cs
rename to Nocto/UsersEndpoint.cs
index 64d047f4..47ebe428 100644
--- a/Burr/UsersEndpoint.cs
+++ b/Nocto/UsersEndpoint.cs
@@ -1,8 +1,8 @@
using System.Collections.Generic;
using System.Threading.Tasks;
-using Burr.Helpers;
+using Nocto.Helpers;
-namespace Burr
+namespace Nocto
{
///
/// Supports the ability to get and update users via the GitHub API v3.
diff --git a/Burr/packages.config b/Nocto/packages.config
similarity index 100%
rename from Burr/packages.config
rename to Nocto/packages.config
diff --git a/packages/repositories.config b/packages/repositories.config
index 30f675f9..e0aabd32 100644
--- a/packages/repositories.config
+++ b/packages/repositories.config
@@ -3,4 +3,7 @@
+
+
+
\ No newline at end of file