SeppPenner
SeppPenner
You can check out https://github.com/SeppPenner/Serilog.Sinks.MicrosoftTeams. I have fixed both issues that are currently in this repo and added a new sink.
You can check out https://github.com/SeppPenner/Serilog.Sinks.MicrosoftTeams. I have fixed both issues that are currently in this repo and added a new sink.
Check https://github.com/SeppPenner/Serilog.Sinks.MicrosoftTeams. It's in there.
@JoeYong If you check the repository's readme, there already is a badge (with link to nuget): [](https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.Serilog.Sinks.MicrosoftTeams/) However, here's the plain link: https://www.nuget.org/packages/HaemmerElectronics.SeppPenner.Serilog.Sinks.MicrosoftTeams/ ;)
This is something I could also need. We have Docker containers that need to install some dependencies in order to be able to show PDF reports correctly (e.g. `RUN apt-get...
I guess, this can't be fixed with version 3 anymore and is a known issue within Sparkplug still: https://github.com/eclipse/tahu/issues/71, https://github.com/eclipse-sparkplug/sparkplug/issues/114 and https://github.com/eclipse-sparkplug/sparkplug/issues/62. I have seen this issue coming since I...
It seems like C# doesn't convert the types properly with `Convert`...
This is basically just: ```csharp int intValue = -32; uint uintValue = unchecked((uint)intValue); Console.WriteLine(uintValue); ```
I have updated the tests and nearly fixed this in https://github.com/SeppPenner/SparkplugNet/commit/d3ff29bd4c26c35c8cf963955a7105349177e0c1. However, the conversions back from https://github.com/SeppPenner/SparkplugNet/blob/d3ff29bd4c26c35c8cf963955a7105349177e0c1/src/SparkplugNet/VersionB/PayloadConverter.cs#L219 and https://github.com/SeppPenner/SparkplugNet/blob/d3ff29bd4c26c35c8cf963955a7105349177e0c1/src/SparkplugNet/VersionB/PayloadConverter.cs#L224 don't work yet properly. Feel free to share your thoughts, I...
This code is crazy now: https://github.com/SeppPenner/SparkplugNet/blob/758b561206807f8c46ee11e6594054ce3ca75ff8/src/SparkplugNet/Core/Extensions/DataTypeExtensions.cs#L1 :D