Skip to content

Commit 76cc70a

Browse files
dependencyupdates[bot]Copilotandreasohlund
authored
Update NServiceBus Core to 10.0.0-alpha.11 (#112)
* Update NServiceBus Core to 10.0.0-alpha.11 * Migrate Feature classes to NServiceBus 10.0.0-alpha.11 API (#113) * Initial plan * Update Feature classes for NServiceBus 10.0.0-alpha.11 Co-authored-by: andreasohlund <125028+andreasohlund@users.noreply.github.com> * Update API approval file for public ClaimCheck constructor Co-authored-by: andreasohlund <125028+andreasohlund@users.noreply.github.com> * Fixes --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: andreasohlund <125028+andreasohlund@users.noreply.github.com> Co-authored-by: Andreas Öhlund <andreas.ohlund@particular.net> --------- Co-authored-by: dependencyupdates[bot] <218638057+dependencyupdates[bot]@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: andreasohlund <125028+andreasohlund@users.noreply.github.com> Co-authored-by: Andreas Öhlund <andreas.ohlund@particular.net>
1 parent 5e13e59 commit 76cc70a

6 files changed

Lines changed: 9 additions & 5 deletions

File tree

src/NServiceBus.ClaimCheck.AcceptanceTests/NServiceBus.ClaimCheck.AcceptanceTests.csproj

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

2020
<ItemGroup>
21-
<PackageReference Include="NServiceBus.AcceptanceTesting" Version="10.0.0-alpha.10" />
21+
<PackageReference Include="NServiceBus.AcceptanceTesting" Version="10.0.0-alpha.11" />
2222
</ItemGroup>
2323

2424
</Project>

src/NServiceBus.ClaimCheck.Tests/ApprovalFiles/APIApprovals.ApproveClaimCheck.approved.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ namespace NServiceBus.Features
100100
{
101101
public sealed class ClaimCheck : NServiceBus.Features.Feature
102102
{
103+
public ClaimCheck() { }
103104
protected override void Setup(NServiceBus.Features.FeatureConfigurationContext context) { }
104105
}
105106
}

src/NServiceBus.ClaimCheck/ClaimCheck.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ namespace NServiceBus.Features;
1313
/// </summary>
1414
public sealed class ClaimCheck : Feature
1515
{
16-
internal ClaimCheck() { }
16+
/// <summary>
17+
/// Ctor.
18+
/// </summary>
19+
public ClaimCheck() { }
1720

1821
/// <inheritdoc />
1922
protected override void Setup(FeatureConfigurationContext context)

src/NServiceBus.ClaimCheck/CustomClaimCheck.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CustomClaimCheckFeature : Feature
1818
{
1919
public CustomClaimCheckFeature()
2020
{
21-
EnableByDefault<Features.ClaimCheck>();
21+
Enable<Features.ClaimCheck>();
2222

2323
DependsOn<Features.ClaimCheck>();
2424
}

src/NServiceBus.ClaimCheck/FileShareClaimCheck.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class FileShareClaimCheckFeature : Feature
1919
{
2020
public FileShareClaimCheckFeature()
2121
{
22-
EnableByDefault<Features.ClaimCheck>();
22+
Enable<Features.ClaimCheck>();
2323

2424
DependsOn<Features.ClaimCheck>();
2525
}

src/NServiceBus.ClaimCheck/NServiceBus.ClaimCheck.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="NServiceBus" Version="10.0.0-alpha.10" />
11+
<PackageReference Include="NServiceBus" Version="10.0.0-alpha.11" />
1212
<PackageReference Include="Particular.Packaging" Version="4.5.0" PrivateAssets="All" />
1313

1414
</ItemGroup>

0 commit comments

Comments
 (0)