Skip to content

Commit ef87b6d

Browse files
Update NServiceBus Core to 10.0.0-alpha.11 (#771)
* Update NServiceBus Core to 10.0.0-alpha.11 * Fix ctor --------- Co-authored-by: dependencyupdates[bot] <218638057+dependencyupdates[bot]@users.noreply.github.com> Co-authored-by: Andreas Öhlund <andreas.ohlund@particular.net>
1 parent 98ca442 commit ef87b6d

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

src/NServiceBus.Gateway.AcceptanceTests/NServiceBus.Gateway.AcceptanceTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="NServiceBus.AcceptanceTesting" Version="10.0.0-alpha.10" />
20+
<PackageReference Include="NServiceBus.AcceptanceTesting" Version="10.0.0-alpha.11" />
2121
<PackageReference Include="NServiceBus.Callbacks" Version="6.0.0-alpha.2" />
2222
</ItemGroup>
2323

src/NServiceBus.Gateway/Gateway.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@
2323
using Transport;
2424
using NServiceBus.ClaimCheck;
2525

26-
/// <summary>
27-
/// Used to configure the gateway.
28-
/// </summary>
2926
class Gateway : Feature
3027
{
31-
internal Gateway()
28+
public Gateway()
3229
{
3330
DependsOn("NServiceBus.Features.DelayedDeliveryFeature");
3431
Defaults(s => s.SetDefault("Gateway.Retries.RetryPolicy", DefaultRetryPolicy.BuildWithDefaults()));
@@ -38,9 +35,6 @@ internal Gateway()
3835
Defaults(c => c.Set(new InstallerSettings()));
3936
}
4037

41-
/// <summary>
42-
/// Called when the features is activated
43-
/// </summary>
4438
protected override void Setup(FeatureConfigurationContext context)
4539
{
4640
if (context.Settings.GetOrDefault<bool>("Endpoint.SendOnly"))

src/NServiceBus.Gateway/NServiceBus.Gateway.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="NServiceBus" Version="10.0.0-alpha.10" />
11-
<PackageReference Include="NServiceBus.ClaimCheck" Version="2.0.0-alpha.4" />
10+
<PackageReference Include="NServiceBus" Version="10.0.0-alpha.11" />
11+
<PackageReference Include="NServiceBus.ClaimCheck" Version="2.0.0-alpha.5" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

0 commit comments

Comments
 (0)