Skip to content

Commit 8443812

Browse files
update nugets
1 parent 878cd78 commit 8443812

File tree

11 files changed

+28
-27
lines changed

11 files changed

+28
-27
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.Example.UnitTests/Analogy.LogViewer.Example.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Analogy.LogViewer.Interfaces.Winforms" Version="9.0.0-rc4" />
10+
<PackageReference Include="Analogy.LogViewer.Interfaces.WinForms" Version="9.0.0-rc6" />
1111
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
1212
<PackageReference Include="MSTest.TestAdapter" Version="3.8.3" />
1313
<PackageReference Include="MSTest.TestFramework" Version="3.8.3" />

Analogy.LogViewer.Example/Analogy.LogViewer.Example.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net9.0-windows;net8.0-windows;net48</TargetFrameworks>
55
<VersionPrefix>9.0.0</VersionPrefix>
6-
<VersionSuffix>rc2</VersionSuffix>
6+
<VersionSuffix>rc3</VersionSuffix>
77
<Authors>Lior Banai</Authors>
88
<Company>Analogy.LogViewer</Company>
99
<Product>Analogy.LogViewer.Example</Product>
@@ -20,10 +20,10 @@
2020
</PropertyGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="9.0.0-rc1" />
24-
<PackageReference Include="Analogy.CommonUtilities" Version="9.0.0-rc1" />
25-
<PackageReference Include="Analogy.LogViewer.Interfaces.Winforms" Version="9.0.0-rc4" />
26-
<PackageReference Include="Analogy.LogViewer.Template" Version="9.0.0-rc3" />
23+
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="9.0.0-rc2" />
24+
<PackageReference Include="Analogy.CommonUtilities" Version="9.0.0-rc2" />
25+
<PackageReference Include="Analogy.LogViewer.Interfaces.WinForms" Version="9.0.0-rc6" />
26+
<PackageReference Include="Analogy.LogViewer.Template" Version="9.0.0-rc4" />
2727
<PackageReference Include="System.Resources.Extensions" Version="9.0.10" />
2828
</ItemGroup>
2929
<ItemGroup>

Analogy.LogViewer.Example/IAnalogy/ExampleDataProviderFactory.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
using Analogy.Interfaces;
2-
using Analogy.Interfaces.Winforms;
2+
using Analogy.Interfaces.WinForms;
33
using Analogy.LogViewer.Template;
44
using System;
55
using System.Collections.Generic;
66

77
namespace Analogy.LogViewer.Example.IAnalogy
88
{
9-
public class ExampleDataProviderFactory : DataProvidersFactoryWinforms
9+
public class ExampleDataProviderFactory : DataProvidersFactoryWinForms
1010
{
1111
public override Guid FactoryId { get; set; } = PrimaryFactory.Id;
1212
public override string Title { get; set; } = "Analogy Online example";
1313

14-
public override IEnumerable<IAnalogyDataProviderWinforms> DataProviders { get; set; } = new List<IAnalogyDataProviderWinforms>
14+
public override IEnumerable<IAnalogyDataProviderWinForms> DataProviders { get; set; } = new List<IAnalogyDataProviderWinForms>
1515
{
1616
//add 2 "real time data providers"
1717
new OnlineExampleDataProvider("Online Data Provider 1", new Guid("6642B160-F992-4120-B688-B02DE2E83256")),

Analogy.LogViewer.Example/IAnalogy/ExampleUserControl.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Analogy.Interfaces;
22
using Analogy.Interfaces.DataTypes;
33
using Analogy.Interfaces.Factories;
4-
using Analogy.Interfaces.Winforms;
5-
using Analogy.Interfaces.Winforms.DataTypes;
6-
using Analogy.Interfaces.Winforms.Factories;
4+
using Analogy.Interfaces.WinForms;
5+
using Analogy.Interfaces.WinForms.DataTypes;
6+
using Analogy.Interfaces.WinForms.Factories;
77
using Microsoft.Extensions.Logging;
88
using System;
99
using System.Collections.Generic;
@@ -15,18 +15,18 @@
1515

1616
namespace Analogy.LogViewer.Example.IAnalogy
1717
{
18-
public class ExampleUserControlFactory : IAnalogyCustomUserControlsFactoryWinforms
18+
public class ExampleUserControlFactory : IAnalogyCustomUserControlsFactoryWinForms
1919
{
2020
public Guid FactoryId { get; set; } = PrimaryFactory.Id;
2121
public string Title { get; set; } = "User Control Examples";
2222

23-
public IEnumerable<IAnalogyCustomUserControlWinforms> UserControls { get; } = new List<IAnalogyCustomUserControlWinforms>
23+
public IEnumerable<IAnalogyCustomUserControlWinForms> UserControls { get; } = new List<IAnalogyCustomUserControlWinForms>
2424
{
2525
new ExampleUserControl(),
2626
};
2727
}
2828

29-
public class ExampleUserControl : IAnalogyCustomUserControlWinforms
29+
public class ExampleUserControl : IAnalogyCustomUserControlWinForms
3030
{
3131
public Task InitializeUserControl(Control hostingControl, ILogger logger)
3232
{
@@ -43,6 +43,6 @@ public Task UserControlRemoved()
4343
public Image? SmallImage { get; set; }
4444
public Image? LargeImage { get; set; }
4545
public string Title { get; set; } = "Example User Control";
46-
public AnalogyToolTipWinforms? ToolTip { get; set; }
46+
public AnalogyToolTipWinForms? ToolTip { get; set; }
4747
}
4848
}

Analogy.LogViewer.Example/IAnalogy/ExampleUserSettingsFactory.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Analogy.Interfaces;
22
using Analogy.Interfaces.DataTypes;
3-
using Analogy.Interfaces.Winforms.DataTypes;
3+
using Analogy.Interfaces.WinForms.DataTypes;
44
using Analogy.LogViewer.Example.Properties;
55
using Analogy.LogViewer.Template;
66
using Microsoft.Extensions.Logging;
@@ -14,15 +14,15 @@
1414

1515
namespace Analogy.LogViewer.Example.IAnalogy
1616
{
17-
public class ExampleUserSettingsFactory : TemplateUserSettingsFactoryWinforms
17+
public class ExampleUserSettingsFactory : TemplateUserSettingsFactoryWinForms
1818
{
1919
public override Guid FactoryId { get; set; } = PrimaryFactory.Id;
2020
public override Guid Id { get; set; } = new Guid("fe9d38dc-dd31-4f15-8aee-acb7f7e9085b");
2121
public override UserControl DataProviderSettings { get; set; }
2222
public override string Title { get; set; } = "Example User Settings";
2323
public override Image? SmallImage { get; set; } = Resources.Analogy_image_16x16;
2424
public override Image? LargeImage { get; set; } = Resources.Analogy_image_32x32;
25-
public override AnalogyToolTipWinforms? ToolTip { get; set; } = new AnalogyToolTipWinforms("Example tooltip", "some content",
25+
public override AnalogyToolTipWinForms? ToolTip { get; set; } = new AnalogyToolTipWinForms("Example tooltip", "some content",
2626
"footer/title", Resources.Analogy_image_16x16, Resources.Analogy_image_32x32);
2727

2828
public override void CreateUserControl(ILogger logger)

Analogy.LogViewer.Example/IAnalogy/ExtensionExample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Analogy.Interfaces;
22
using Analogy.Interfaces.DataTypes;
33
using Analogy.Interfaces.Factories;
4-
using Analogy.Interfaces.Winforms;
4+
using Analogy.Interfaces.WinForms;
55
using Microsoft.Extensions.Logging;
66
using System;
77
using System.Collections.Generic;
@@ -52,7 +52,7 @@ public void NewMessages(List<AnalogyLogMessage> messages)
5252
}
5353
}
5454

55-
public class ExtensionUserControlExample : IAnalogyExtensionUserControlWinforms
55+
public class ExtensionUserControlExample : IAnalogyExtensionUserControlWinForms
5656
{
5757
public Guid Id { get; set; } = new Guid("34c45425-8acd-4f8e-b901-d234297fe3ec");
5858
public Guid TargetComponentId { get; set; } = new Guid("6642B160-F992-4120-B688-B02DE2E83256");

Analogy.LogViewer.Example/IAnalogy/OfflineExampleDataProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace Analogy.LogViewer.Example.IAnalogy
1414
{
15-
public sealed class OfflineExampleDataProvider : Template.OfflineDataProviderWinforms
15+
public sealed class OfflineExampleDataProvider : Template.OfflineDataProviderWinForms
1616
{
1717
public override Guid Id { get; set; }
1818
public override Image? LargeImage { get; set; } = Resources.Analogy_image_32x32;

Analogy.LogViewer.Example/IAnalogy/OnlineExampleDataProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace Analogy.LogViewer.Example.IAnalogy
1414
{
15-
public sealed class OnlineExampleDataProvider : Template.OnlineDataProviderWinforms
15+
public sealed class OnlineExampleDataProvider : Template.OnlineDataProviderWinForms
1616
{
1717
public override string? OptionalTitle { get; set; }
1818
public override Guid Id { get; set; }

Analogy.LogViewer.Example/IAnalogy/PrimaryFactory.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
using Analogy.Interfaces;
2+
using Analogy.Interfaces.DataTypes;
23
using Analogy.LogViewer.Example.Properties;
34
using System;
45
using System.Collections.Generic;
56
using System.Drawing;
67

78
namespace Analogy.LogViewer.Example.IAnalogy
89
{
9-
public class PrimaryFactory : Analogy.LogViewer.Template.PrimaryFactoryWinforms
10+
public class PrimaryFactory : Analogy.LogViewer.Template.PrimaryFactoryWinForms
1011
{
1112
internal static readonly Guid Id = new Guid("4B1EBC0F-64DD-44A1-BC27-79DBFC6384CC");
1213
public override Guid FactoryId { get; set; } = Id;

0 commit comments

Comments
 (0)