-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2e4bdca
commit 3e7c415
Showing
32 changed files
with
109 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<TargetFramework>net8.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.2" /> | ||
<PackageReference Include="ProjectDefaults" Version="1.0.101" PrivateAssets="all" /> | ||
<PackageReference Include="ProjectDefaults" Version="1.0.102" PrivateAssets="all" /> | ||
</ItemGroup> | ||
</Project> |
4 changes: 2 additions & 2 deletions
4
src/SqlServer.Deduplication.SampleEndpoint/SqlServer.Deduplication.SampleEndpoint.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<TargetFramework>net8.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.2" /> | ||
<PackageReference Include="NServiceBus" Version="8.1.6" /> | ||
<PackageReference Include="NServiceBus.Newtonsoft.Json" Version="3.0.0" /> | ||
<PackageReference Include="NServiceBus.Transport.SqlServer" Version="7.0.2" /> | ||
<ProjectReference Include="..\SqlServer.Deduplication\SqlServer.Deduplication.csproj" /> | ||
<PackageReference Include="ProjectDefaults" Version="1.0.101" PrivateAssets="all" /> | ||
<PackageReference Include="ProjectDefaults" Version="1.0.102" PrivateAssets="all" /> | ||
<Using Include="NServiceBus.IMessageHandlerContext" Alias="HandlerContext" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ public static bool PurgeOnStartup(this IReadOnlySettings settings) | |
{ | ||
return purgeOnStartup; | ||
} | ||
|
||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
struct IncomingHeaders | ||
struct IncomingHeaders( | ||
Guid messageId, | ||
string messageType, | ||
string? messageNamespace, | ||
string? destination, | ||
string? referrer) | ||
{ | ||
public Guid MessageId { get; } | ||
public string MessageType { get; } | ||
public string? Referrer { get; } | ||
public string? Destination { get; } | ||
public string? MessageNamespace { get; } | ||
|
||
public IncomingHeaders(Guid messageId, string messageType, string? messageNamespace, string? destination, string? referrer) | ||
{ | ||
MessageId = messageId; | ||
MessageType = messageType; | ||
MessageNamespace = messageNamespace; | ||
Destination = destination; | ||
Referrer = referrer; | ||
} | ||
public Guid MessageId { get; } = messageId; | ||
public string MessageType { get; } = messageType; | ||
public string? Referrer { get; } = referrer; | ||
public string? Destination { get; } = destination; | ||
public string? MessageNamespace { get; } = messageNamespace; | ||
} |
Oops, something went wrong.