Skip to content

Commit

Permalink
renamed namespaces back to original to prevent breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
funkycodin authored and pjvds committed Jun 25, 2010
1 parent 2d869b8 commit 3c99abb
Show file tree
Hide file tree
Showing 18 changed files with 33 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
using Ncqrs.Commanding;
using Ncqrs.Commanding.CommandExecution;
using Ncqrs.Commanding.CommandExecution.Mapping;
using Ncqrs.Commanding.CommandExecution.Mapping.Reflection;
using Ncqrs.Commanding.CommandExecution.Mapping.Actions;
using Ncqrs.Commanding.CommandExecution.Mapping.Attributes;
using Ncqrs.Commanding.ServiceModel;
using Ncqrs.Domain;
using Ncqrs.Eventing.Sourcing;
Expand Down
2 changes: 1 addition & 1 deletion Framework/src/Ncqrs/Commanding/CommandBase.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Ncqrs.Commanding.CommandExecution.Mapping.Reflection;
using Ncqrs.Commanding.CommandExecution.Mapping.Attributes;

namespace Ncqrs.Commanding
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Diagnostics.Contracts;
using Ncqrs.Commanding.CommandExecution.Mapping.Reflection;
using Ncqrs.Commanding.CommandExecution.Mapping.Actions;
using Ncqrs.Commanding.CommandExecution.Mapping.Attributes;

namespace Ncqrs.Commanding.CommandExecution.Mapping
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using Ncqrs.Commanding.CommandExecution.Mapping.Attributes;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Actions
{
/// <summary>
/// A command handler that execute an action based on the mapping of a command.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Reflection;
using Ncqrs.Domain;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Actions
{
/// <summary>
/// An auto mapped action that executes a method on an aggregate root based on the mapping specified on the command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using System;
using System.Linq;
using System.Reflection;
using Ncqrs.Commanding.CommandExecution.Mapping.Attributes;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Actions
{
internal class DirectMethodCommandInfo
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Reflection;
using Ncqrs.Domain;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Actions
{
/// <summary>
/// An auto mapped action for a command. It created the object as specified by the mapping.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using System;
using System.Diagnostics.Contracts;
using Ncqrs.Commanding.CommandExecution.Mapping.Attributes;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Actions
{
internal class ObjectCreationCommandInfo
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Attributes
{
/// <summary>
/// Marks a property as the property that contains the aggregate root id.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Attributes
{
/// <summary>
/// Defines that a property should be excluded in the auto mapping process.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Attributes
{
/// <summary>
/// Defines that the command maps directly to a constructor on an aggregate root.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Attributes
{
/// <summary>
/// Defines that the command maps directly to a method on an aggregate root.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Ncqrs.Commanding.CommandExecution.Mapping.Reflection
namespace Ncqrs.Commanding.CommandExecution.Mapping.Attributes
{
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
public sealed class TransactionalAttribute : Attribute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Ncqrs.Commanding.CommandExecution.Mapping.Reflection;
using Ncqrs.Commanding.CommandExecution.Mapping.Attributes;

namespace Ncqrs.Commanding.CommandExecution.Mapping
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Ncqrs.Commanding.CommandExecution.Mapping.Fluent;
using Ncqrs.Commanding.CommandExecution.Mapping.Reflection;
using Ncqrs.Commanding.CommandExecution.Mapping.Actions;
using Ncqrs.Commanding.CommandExecution.Mapping.Fluent;

namespace Ncqrs.Commanding.CommandExecution.Mapping
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Ncqrs.Commanding.CommandExecution.Mapping.Reflection;
using Ncqrs.Commanding.CommandExecution.Mapping.Attributes;

namespace Ncqrs.Commanding.CommandExecution.Mapping
{
Expand Down
2 changes: 1 addition & 1 deletion Framework/src/Ncqrs/Commanding/ICommand.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Ncqrs.Commanding.CommandExecution.Mapping.Reflection;
using Ncqrs.Commanding.CommandExecution.Mapping.Attributes;

namespace Ncqrs.Commanding
{
Expand Down
20 changes: 10 additions & 10 deletions Framework/src/Ncqrs/Ncqrs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@
<Compile Include="Commanding\CommandExecution\Mapping\Fluent\MappedCommandToAggregateRootConstructor.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Fluent\MappedCommandToAggregateRootMethod.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Map.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\AttributeMappedCommandExecutor.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\DirectMethodCommandExecutor.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\DirectMethodCommandInfo.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\ObjectCreationCommandExecutor.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\ObjectCreationCommandInfo.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Actions\AttributeMappedCommandExecutor.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Actions\DirectMethodCommandExecutor.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Actions\DirectMethodCommandInfo.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Actions\ObjectCreationCommandExecutor.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Actions\ObjectCreationCommandInfo.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\CommandMappingConfiguration.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\MappedCommandExecutor.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\CommandMappingException.cs" />
Expand All @@ -125,11 +125,11 @@
<Compile Include="Commanding\ServiceModel\ICommandService.cs" />
<Compile Include="Commanding\ServiceModel\ICommandServiceInterceptor.cs" />
<Compile Include="Commanding\CommandExecution\TransactionalCommandExecutorWrapper.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\AggregateRootIdAttribute.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\ExcludeInMappingAttribute.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\MapsToAggregateRootConstructorAttribute.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\MapsToAggregateRootMethodAttribute.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Reflection\TransactionalAttribute.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Attributes\AggregateRootIdAttribute.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Attributes\ExcludeInMappingAttribute.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Attributes\MapsToAggregateRootConstructorAttribute.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Attributes\MapsToAggregateRootMethodAttribute.cs" />
<Compile Include="Commanding\CommandExecution\Mapping\Attributes\TransactionalAttribute.cs" />
<Compile Include="Commanding\ICommand.cs" />
<Compile Include="Config\InstanceNotFoundInEnvironment.cs" />
<Compile Include="DateTimeBasedClock.cs" />
Expand Down

0 comments on commit 3c99abb

Please sign in to comment.