Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hoseinzadehashraf committed Feb 13, 2024
1 parent 33ea27e commit 9ebaa83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Olive.EventBus/Message/EventBusMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public abstract class EventBusMessage : IEventBusMessage
/// <summary>
/// By default it's a new Guid.
/// </summary>
public string DeduplicationId { get; } = Guid.NewGuid().ToString().Remove("-");
public string DeduplicationId { get; set; } = Guid.NewGuid().ToString().Remove("-");

public string MessageGroupId { get; } = "Default";
public string MessageGroupId { get; set; } = "Default";
}
}
2 changes: 1 addition & 1 deletion Olive.EventBus/Olive.EventBus.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.1.139</Version>
<Version>2.1.140</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 9ebaa83

Please sign in to comment.