Skip to content

Commit

Permalink
update version 8.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai-Intuitive committed Jan 25, 2025
1 parent d90f43a commit 3aeddcb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ dotnet_diagnostic.SA1122.severity = suggestion
dotnet_diagnostic.SA1108.severity = silent
dotnet_diagnostic.SA1012.severity = error
dotnet_diagnostic.SA1500.severity = error
csharp_prefer_system_threading_lock = true:suggestion
dotnet_diagnostic.MA0132.severity = error

[*.{cs,vb}]
dotnet_style_operator_placement_when_wrapping = beginning_of_line
Expand Down
2 changes: 1 addition & 1 deletion Analogy.LogServer.Clients/Analogy.LogServer.Clients.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>grpc client to send messages To Analogy Log Viewer with gRPC server running</Description>
<Copyright>Lior Banai 2020-2025</Copyright>
<PackageIcon>Analogy.gRPC.service.png</PackageIcon>
<VersionPrefix>8.0.0.0</VersionPrefix>
<VersionPrefix>8.0.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<RepositoryUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.gRPC</RepositoryUrl>
<PackageProjectUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.gRPC</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public AnalogyMessageConsumer(string address)
{
Level = (AnalogyLogLevel)m.Level,
Class = (AnalogyLogClass)m.Class,
Date = m.Date.ToDateTime().ToLocalTime(),
Date = m.Date.ToDateTimeOffset(),
FileName = m.FileName,
LineNumber = m.LineNumber,
MachineName = m.MachineName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private async Task GetMessages()
{
Level = (AnalogyLogLevel)m.Level,
Class = (AnalogyLogClass)m.Class,
Date = m.Date.ToDateTime().ToLocalTime(),
Date = m.Date.ToDateTimeOffset(),
FileName = m.FileName,
LineNumber = m.LineNumber,
MachineName = m.MachineName,
Expand Down

0 comments on commit 3aeddcb

Please sign in to comment.