Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

Commit

Permalink
Prepare for next major release (#758)
Browse files Browse the repository at this point in the history
* Bump next major version

* Remove obsoletes no longer needed in v9.

Leave the shell class with standard messages though.

* Remove obsoletes and partials no longer needed in v9

Leave the shell class with standard messages though.
  • Loading branch information
SeanFeldman authored and boblangley committed Sep 27, 2018
1 parent d14d55d commit ee6b6ce
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 655 deletions.
2 changes: 1 addition & 1 deletion GitVersion.yml
@@ -1,5 +1,5 @@
assembly-versioning-scheme: Major
next-version: 8.0
next-version: 9.0
branches:
develop:
tag: beta
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -6,7 +6,7 @@ namespace NServiceBus
/// <summary>
/// Settings for the forwarding topology
/// </summary>
public static partial class AzureServiceBusForwardingTopologySettingsExtensions
public static class AzureServiceBusForwardingTopologySettingsExtensions
{
/// <summary>
/// Allows to set the bundle prefix
Expand Down
Expand Up @@ -8,10 +8,10 @@ namespace NServiceBus
/// <summary>
/// Azure Service Bus transport extensions API.
/// </summary>
public static partial class AzureServiceBusTransportExtensions
public static class AzureServiceBusTransportExtensions
{
/// <summary>
/// Configures Azure Service Bus to use <see cref="ForwardingTopology"/> topology.
/// Configures Azure Service Bus to use Forwarding topology.
/// </summary>
public static AzureServiceBusForwardingTopologySettings UseForwardingTopology(this TransportExtensions<AzureServiceBusTransport> transportExtensions)
{
Expand Down
Expand Up @@ -2,7 +2,7 @@
{
using Settings;

/// <summary><see cref="EndpointOrientedTopology"/> specific settings.</summary>
/// <summary>Endpoint-Oriented topology specific settings.</summary>
public class AzureServiceBusEndpointOrientedTopologySettings : TransportExtensions<AzureServiceBusTransport>
{
internal AzureServiceBusEndpointOrientedTopologySettings(SettingsHolder settings) : base(settings)
Expand Down
Expand Up @@ -7,8 +7,8 @@
using Settings;
using Transport.AzureServiceBus;

/// <summary><see cref="EndpointOrientedTopology"/> specific settings.</summary>
public static partial class AzureServiceBusEndpointOrientedTopologySettingsExtensions
/// <summary>Endpoint-Oriented topology specific settings.</summary>
public static class AzureServiceBusEndpointOrientedTopologySettingsExtensions
{
/// <summary>Register publisher endpoint name for a give event type.</summary>
public static AzureServiceBusEndpointOrientedTopologySettings RegisterPublisher(this AzureServiceBusEndpointOrientedTopologySettings topologySettings, Type type, string publisherName)
Expand Down
Expand Up @@ -2,7 +2,7 @@
{
using Settings;

/// <summary><see cref="ForwardingTopology"/> specific settings.</summary>
/// <summary>Forwarding topology specific settings.</summary>
public class AzureServiceBusForwardingTopologySettings : TransportExtensions<AzureServiceBusTransport>
{
internal AzureServiceBusForwardingTopologySettings(SettingsHolder settings) : base(settings)
Expand Down
Expand Up @@ -9,7 +9,7 @@
/// <summary>
/// Queue configuration settings.
/// </summary>
public partial class AzureServiceBusQueueSettings : ExposeSettings
public class AzureServiceBusQueueSettings : ExposeSettings
{
internal AzureServiceBusQueueSettings(SettingsHolder settings) : base(settings)
{
Expand Down
Expand Up @@ -58,8 +58,7 @@ public AzureServiceBusSanitizationSettings UseRulePathMaximumLength(int rulePath
/// <summary>
/// Strategy to use for sanitization of entity paths/names.
/// <remarks>
/// Default is <see cref="ThrowOnFailedValidation" />. For backward compatibility with
/// <see cref="EndpointOrientedTopology" /> use <see cref="ValidateAndHashIfNeeded" />.
/// Default is <see cref="ThrowOnFailedValidation" />. For backward compatibility with Endpoint-Oriented topology use <see cref="ValidateAndHashIfNeeded" />.
/// </remarks>
/// </summary>
public AzureServiceBusSanitizationExtensionPoint<T> UseStrategy<T>() where T : ISanitizationStrategy
Expand Down
Expand Up @@ -9,7 +9,7 @@ namespace NServiceBus
/// <summary>
/// Subscriptions configuration settings.
/// </summary>
public partial class AzureServiceBusSubscriptionSettings : ExposeSettings
public class AzureServiceBusSubscriptionSettings : ExposeSettings
{
internal AzureServiceBusSubscriptionSettings(SettingsHolder settings) : base(settings)
{
Expand Down
Expand Up @@ -9,7 +9,7 @@
/// <summary>
/// Topics configuration settings.
/// </summary>
public partial class AzureServiceBusTopicSettings : ExposeSettings
public class AzureServiceBusTopicSettings : ExposeSettings
{
internal AzureServiceBusTopicSettings(SettingsHolder settings) : base(settings)
{
Expand Down Expand Up @@ -83,7 +83,7 @@ public AzureServiceBusTopicSettings EnableFilteringMessagesBeforePublishing(bool

/// <summary>
/// <remarks> Default is false.</remarks>
/// <remarks>When using <see cref="ForwardingTopology" />, partitioning cannot be enabled.</remarks>
/// <remarks>When using Forwarding topology, partitioning cannot be enabled.</remarks>
/// </summary>
public AzureServiceBusTopicSettings EnablePartitioning(bool enablePartitioning)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Transport/Topology/MetaModel/NamespaceInfo.cs
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;

/// <summary></summary>
public partial class NamespaceInfo : IEquatable<NamespaceInfo>
public class NamespaceInfo : IEquatable<NamespaceInfo>
{
/// <summary></summary>
public NamespaceInfo(string alias, string connectionString, NamespacePurpose purpose = NamespacePurpose.Partitioning)
Expand Down

0 comments on commit ee6b6ce

Please sign in to comment.