-
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.
Added Azure.Identity to Service Bus Plugin and support for custom mes…
…sage deserialization.
- Loading branch information
Brian Greco
committed
Jan 15, 2024
1 parent
9a662ba
commit 9a29977
Showing
7 changed files
with
44 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
PACKAGES_DIR=../../../_packages | ||
VERSION=7.0.23-dev | ||
VERSION=7.0.27-dev | ||
|
||
rm $PACKAGES_DIR/*.nupkg | ||
dotnet clean | ||
|
9 changes: 9 additions & 0 deletions
9
netfusion/src/Common/NetFusion.Common.Base/Serialization/ICustomDeserialize.cs
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace NetFusion.Common.Base.Serialization; | ||
|
||
/// <summary> | ||
/// Interface implemented by message to provide custom deserialization. | ||
/// </summary> | ||
public interface ICustomDeserialize | ||
{ | ||
void Deserialize(byte[] value); | ||
} |
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