Skip to content

Commit

Permalink
Merge branch 'hotfix-4.3.1' of github.com:Particular/NServiceBus into…
Browse files Browse the repository at this point in the history
… hotfix-4.3.1
  • Loading branch information
indualagarsamy committed Dec 13, 2013
2 parents ee1bb2d + 5fe8e10 commit 16f87d2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/NServiceBus.Core/ConfigureQueueCreation.cs
@@ -1,5 +1,7 @@
namespace NServiceBus
{
using System.ComponentModel;

/// <summary>
/// Contains extension methods to NServiceBus.Configure.
/// </summary>
Expand All @@ -15,6 +17,10 @@ public static Configure DoNotCreateQueues(this Configure config)
return config;
}

internal static bool DontCreateQueues { get; private set; }
/// <summary>
/// Gets whether or not queues should be created
/// </summary>
[EditorBrowsable(EditorBrowsableState.Advanced)]
public static bool DontCreateQueues { get; private set; }
}
}

0 comments on commit 16f87d2

Please sign in to comment.