Skip to content

Commit

Permalink
move extensions to namespaces (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
jchannon authored and JoeStead committed Oct 11, 2017
1 parent ddb3dd5 commit ab6c838
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 11 deletions.
4 changes: 3 additions & 1 deletion samples/ActorsModule.cs
@@ -1,6 +1,8 @@
namespace Botwin.Samples
{
using Botwin.Extensions;
using Botwin.ModelBinding;
using Botwin.Request;
using Botwin.Response;
using Microsoft.AspNetCore.Http;
using Newtonsoft.Json;

Expand Down
2 changes: 0 additions & 2 deletions src/Botwin.csproj.DotSettings

This file was deleted.

@@ -1,4 +1,4 @@
namespace Botwin.Extensions
namespace Botwin.ModelBinding
{
using System;
using System.Collections.Generic;
Expand Down
@@ -1,4 +1,4 @@
namespace Botwin.Extensions
namespace Botwin.ModelBinding
{
using System.Collections.Generic;
using System.Linq;
Expand Down
@@ -1,4 +1,4 @@
namespace Botwin.Extensions
namespace Botwin.Request
{
using System;
using System.Collections.Generic;
Expand Down
@@ -1,4 +1,4 @@
namespace Botwin.Extensions
namespace Botwin.Request
{
using System;
using Microsoft.AspNetCore.Routing;
Expand Down
@@ -1,4 +1,4 @@
namespace Botwin.Extensions
namespace Botwin.Response
{
using System.Collections.Generic;
using System.Linq;
Expand Down
3 changes: 2 additions & 1 deletion test/BindTests.cs
Expand Up @@ -8,7 +8,8 @@ namespace Botwin.Tests
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Botwin.Extensions;
using Botwin.ModelBinding;
using Botwin.Response;
using FluentValidation;
using FluentValidation.Results;
using Microsoft.AspNetCore.Hosting;
Expand Down
2 changes: 1 addition & 1 deletion test/NegotiatorModule.cs
@@ -1,6 +1,6 @@
namespace Botwin.Tests
{
using Botwin.Extensions;
using Botwin.Response;

public class NegotiatorModule : BotwinModule
{
Expand Down
2 changes: 1 addition & 1 deletion test/TestModule.cs
@@ -1,7 +1,7 @@
namespace Botwin.Tests
{
using System.Linq;
using Botwin.Extensions;
using Botwin.Request;
using Microsoft.AspNetCore.Http;

public class TestModule : BotwinModule
Expand Down

0 comments on commit ab6c838

Please sign in to comment.