diff --git a/LICENSE b/LICENSE index 5f391a3..0682f24 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2018, Eben Roux +Copyright (c) 2019, Eben Roux All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/Shuttle.Esb/Properties/AssemblyInfo.cs b/Shuttle.Esb/Properties/AssemblyInfo.cs index 824abe7..ead0884 100644 --- a/Shuttle.Esb/Properties/AssemblyInfo.cs +++ b/Shuttle.Esb/Properties/AssemblyInfo.cs @@ -13,10 +13,10 @@ [assembly: AssemblyTitle(".NET Standard 2.0")] #endif -[assembly: AssemblyVersion("11.0.0.0")] +[assembly: AssemblyVersion("11.0.1.0")] [assembly: AssemblyCopyright("Copyright © Eben Roux 2019")] [assembly: AssemblyProduct("Shuttle.Esb")] [assembly: AssemblyCompany("Shuttle")] [assembly: AssemblyConfiguration("Release")] -[assembly: AssemblyInformationalVersion("11.0.0")] +[assembly: AssemblyInformationalVersion("11.0.1")] [assembly: ComVisible(false)] diff --git a/Shuttle.Esb/ServiceBus/MessageSender.cs b/Shuttle.Esb/ServiceBus/MessageSender.cs index 73564ec..81a5368 100644 --- a/Shuttle.Esb/ServiceBus/MessageSender.cs +++ b/Shuttle.Esb/ServiceBus/MessageSender.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Collections.ObjectModel; using System.Linq; using Shuttle.Core.Contract; using Shuttle.Core.Logging; @@ -11,6 +10,8 @@ namespace Shuttle.Esb public class MessageSender : IMessageSender { private readonly ILog _log; + private readonly HashSet _messageTypesPublishedWarning = new HashSet(); + private readonly IPipelineFactory _pipelineFactory; private readonly ISubscriptionManager _subscriptionManager; @@ -100,7 +101,12 @@ public IEnumerable Publish(object message, Action(); }