Skip to content

Commit 7085f49

Browse files
committed
update nugets
1 parent c7e89e9 commit 7085f49

File tree

17 files changed

+49
-41
lines changed

17 files changed

+49
-41
lines changed

.github/workflows/dotnet-core-desktop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4.2.2
26+
uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929

3030
# Install the .NET Core workload
3131
- name: Install .NET Core
32-
uses: actions/setup-dotnet@v4.2.0
32+
uses: actions/setup-dotnet@v5.0.0
3333
with:
3434
dotnet-version: 9.0.x
3535

Analogy.LogViewer.Serilog.AspNet/Analogy.LogViewer.Serilog.AspNet.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net9.0-windows;net8.0-windows</TargetFrameworks>
5-
<Version>8.1.0</Version>
4+
<TargetFrameworks>net10.0-windows;net9.0-windows;net8.0-windows</TargetFrameworks>
5+
<VersionPrefix>9.0.0</VersionPrefix>
6+
<VersionSuffix>rc1</VersionSuffix>
67
</PropertyGroup>
78

89
<ItemGroup>

Analogy.LogViewer.Serilog.Sinks.MongoDB/Analogy.LogViewer.Serilog.Sinks.MongoDB.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515

1616
<ItemGroup>
17-
<PackageReference Include="Analogy.CommonUtilities" Version="9.0.0-rc1" />
17+
<PackageReference Include="Analogy.CommonUtilities" Version="9.0.1" />
1818
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="9.0.0" />
19-
<PackageReference Include="Analogy.LogViewer.Template" Version="9.0.0-rc3" />
19+
<PackageReference Include="Analogy.LogViewer.Template" Version="9.0.1" />
2020
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
2121
<PackageReference Include="Serilog" Version="4.3.0" />
2222
<PackageReference Include="System.Resources.Extensions" Version="10.0.0" />

Analogy.LogViewer.Serilog.Sinks/AnalogyLogServerSink.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Analogy.Interfaces;
2+
using Analogy.Interfaces.DataTypes;
23
using Analogy.LogServer.Clients;
34
using Serilog.Core;
45
using Serilog.Events;

Analogy.LogViewer.Serilog.UnitTests/CompactJsonFormatTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class CompactJsonFormatTests
2222
[DataRow("CompactJsonFormat.gz", 4, "2016-10-12T04:46:58.0554314Z")]
2323
public async Task OfflineProviderParserTimestampTest(string fileName, int numberOfMessages, string datetimeToParse)
2424
{
25-
OfflineDataProvider parser = new OfflineDataProvider();
25+
SerilogOfflineDataProvider parser = new SerilogOfflineDataProvider();
2626
UserSettingsManager.UserSettings.Settings.SupportFormats= new List<string> { "*.Clef", "*.log", "*.gz", "*.zip" };
2727
CancellationTokenSource cts = new CancellationTokenSource();
2828
string file = Path.Combine(Folder, "log files", fileName);
@@ -41,7 +41,7 @@ public async Task OfflineProviderParserTimestampTest(string fileName, int number
4141
public void CompactJsonFormatTestAutomaticDetection(string fileName)
4242
{
4343
string file = Path.Combine(Folder, "log files", fileName);
44-
var type = OfflineDataProvider.TryDetectFormat(file);
44+
var type = SerilogOfflineDataProvider.TryDetectFormat(file);
4545
Assert.IsTrue(type == FileFormat.CompactJsonFormatPerLine);
4646
}
4747
[TestMethod]
@@ -50,7 +50,7 @@ public void CompactJsonFormatTestAutomaticDetection(string fileName)
5050
[DataRow("rendered2.clef", 2, "test 2")]
5151
public async Task OfflineProviderParserAlreadyRenderedTest(string fileName, int numberOfMessages, string text)
5252
{
53-
OfflineDataProvider parser = new OfflineDataProvider();
53+
SerilogOfflineDataProvider parser = new SerilogOfflineDataProvider();
5454
UserSettingsManager.UserSettings.Settings.SupportFormats = new List<string> { "*.Clef", "*.log", "*.gz", "*.zip" };
5555
CancellationTokenSource cts = new CancellationTokenSource();
5656
string file = Path.Combine(Folder, "log files", fileName);

Analogy.LogViewer.Serilog.UnitTests/JsonFormatTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public async Task JsonFilePerFileTest()
6262
public void CompactJsonFormatTestAutomaticDetection(string fileName, FileFormat format)
6363
{
6464
string file = Path.Combine(Folder, "log files", fileName);
65-
var type = OfflineDataProvider.TryDetectFormat(file);
65+
var type = SerilogOfflineDataProvider.TryDetectFormat(file);
6666
Assert.IsTrue(type == format);
6767
}
6868

Analogy.LogViewer.Serilog.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 17
4-
VisualStudioVersion = 17.2.32602.215
3+
# Visual Studio Version 18
4+
VisualStudioVersion = 18.0.11205.157 d18.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Analogy.LogViewer.Serilog", "Analogy.LogViewer.Serilog\Analogy.LogViewer.Serilog.csproj", "{495BEFBF-44B2-4F3C-BC5A-ED23298779C0}"
77
EndProject

Analogy.LogViewer.Serilog/Analogy.LogViewer.Serilog.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFrameworks>net9.0-windows;net8.0-windows;net48</TargetFrameworks>
5+
<TargetFrameworks>net10.0-windows;net9.0-windows;net8.0-windows;net48</TargetFrameworks>
66
<VersionPrefix>9.0.0</VersionPrefix>
7-
<VersionSuffix>rc1</VersionSuffix>
7+
<VersionSuffix>rc2</VersionSuffix>
88
<UseWindowsForms>true</UseWindowsForms>
99
<Authors>Lior Banai</Authors>
1010
<Description>Analogy Serilog Parser for Compact Formatting</Description>
@@ -20,9 +20,11 @@
2020
</PropertyGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Analogy.CommonUtilities" Version="9.0.0-rc1" />
23+
<PackageReference Include="Analogy.CommonUtilities" Version="9.0.1" />
2424
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="9.0.0" />
25-
<PackageReference Include="Analogy.LogViewer.Template" Version="9.0.0-rc3" />
25+
<PackageReference Include="Analogy.LogViewer.Interfaces.Winforms" Version="9.0.0" />
26+
<PackageReference Include="Analogy.LogViewer.Template" Version="9.0.1" />
27+
<PackageReference Include="Analogy.LogViewer.Template.WinForms" Version="9.0.0" />
2628
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
2729
<PackageReference Include="Serilog" Version="4.3.0" />
2830
<PackageReference Include="System.Resources.Extensions" Version="10.0.0" />

Analogy.LogViewer.Serilog/ChangeLogList.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Analogy.Interfaces;
2+
using Analogy.Interfaces.DataTypes;
23
using System;
34
using System.Collections.Generic;
45

Analogy.LogViewer.Serilog/IAnalogy/DataProvidersFactory.cs

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)