Skip to content

Commit

Permalink
Moved BusExtensions to Interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Renato Golia committed Sep 30, 2015
1 parent f59b1af commit 7414473
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BusExtensions.cs" />
<Compile Include="Configuration\DelegateCommandHandler.cs" />
<Compile Include="Configuration\DelegateEventHandler.cs" />
<Compile Include="Configuration\IBusBuilder.cs" />
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/Interfaces/Interfaces.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BusExtensions.cs" />
<Compile Include="Logging\ILogger.cs" />
<Compile Include="Container\IContainer.cs" />
<Compile Include="IBus.cs" />
Expand Down
1 change: 0 additions & 1 deletion tests/Tests.Core/Tests.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BusExtensionsTests.cs" />
<Compile Include="Configuration\DefaultCommandContextFactoryTests.cs" />
<Compile Include="Configuration\DefaultCommandMessageFactoryTests.cs" />
<Compile Include="Configuration\DefaultEventContextFactoryTests.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
Expand Down Expand Up @@ -81,5 +82,24 @@ public async Task RaiseManyEvents_no_exception_if_commands_is_null()

}

public class TestCommand : ICommand
{
public string StringValue { get; set; }
public int IntValue { get; set; }
public bool BoolValue { get; set; }

public DateTimeOffset DateTimeOffsetValue { get; set; }
}

public class TestEvent : IEvent
{
public string StringValue { get; set; }
public int IntValue { get; set; }
public bool BoolValue { get; set; }

public DateTimeOffset DateTimeOffsetValue { get; set; }
}


}
}
1 change: 1 addition & 0 deletions tests/Tests.Interfaces/Tests.Interfaces.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BusExtensionsTests.cs" />
<Compile Include="Logging\NopLoggerTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utils\ObjectToDictionaryTests.cs" />
Expand Down

0 comments on commit 7414473

Please sign in to comment.