Skip to content

Commit 09c8810

Browse files
committed
Update NServiceBus to 9.1.* to avoid usage of 9.2.2 version.
Update ClaimCheck version to 1.* Use the correct ClaimCheck feature class
1 parent 66030d3 commit 09c8810

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Snippets/DataBus/Core_9/Core_9.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="NServiceBus" Version="9.*" />
13+
<PackageReference Include="NServiceBus" Version="9.1.*" />
1414
<PackageReference Include="NServiceBus.Callbacks" Version="5.*" />
1515
<PackageReference Include="NServiceBus.Encryption.MessageProperty" Version="5.*" />
1616
<PackageReference Include="NServiceBus.Metrics.ServiceControl" Version="5.*" />

Snippets/DataBus/DataBus_1/ClaimCheck/Custom/Feature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CustomClaimCheckFeature : Feature
1010
{
1111
public CustomClaimCheckFeature()
12-
=> DependsOn<ClaimCheckFeature>();
12+
=> DependsOn<ClaimCheck>();
1313

1414
protected override void Setup(FeatureConfigurationContext context)
1515
=> context.Services.AddSingleton<IClaimCheck, CustomClaimCheck>();

Snippets/DataBus/DataBus_1/ClaimCheck_1.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="NServiceBus" Version="9.*" />
14-
<PackageReference Include="NServiceBus.ClaimCheck" Version="1.0.0-alpha.1" />
13+
<PackageReference Include="NServiceBus.ClaimCheck" Version="1.*" />
1514
</ItemGroup>
1615

1716
</Project>

0 commit comments

Comments
 (0)