Skip to content

Commit

Permalink
Merge pull request #5 from emgdev/master
Browse files Browse the repository at this point in the history
Moved BusExtensions to Interfaces
  • Loading branch information
Kralizek committed Sep 30, 2015
2 parents 7f90c8f + 7414473 commit 59a64dc
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 38 deletions.
72 changes: 36 additions & 36 deletions src/CastleWindsor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
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("CastleWindsor")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("CastleWindsor")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("6021b01c-f24b-48b4-b774-d150ace2b6c3")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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")]
[assembly: AssemblyFileVersion("1.0.0")]
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("CastleWindsor")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("CastleWindsor")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("6021b01c-f24b-48b4-b774-d150ace2b6c3")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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")]
[assembly: AssemblyFileVersion("1.0.0")]
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 59a64dc

Please sign in to comment.