Skip to content

Commit e875c55

Browse files
update nugets
1 parent 8443812 commit e875c55

16 files changed

+40
-47
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install .NET Core
3232
uses: actions/setup-dotnet@v5.0.0
3333
with:
34-
dotnet-version: 9.0.x
34+
dotnet-version: 10.0.x
3535

3636
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
3737
- name: Setup MSBuild.exe

Analogy.Example.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio Version 17
3-
VisualStudioVersion = 17.4.33213.308
2+
# Visual Studio Version 18
3+
VisualStudioVersion = 18.0.11205.157 d18.0
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Analogy.LogViewer.Example", "Analogy.LogViewer.Example\Analogy.LogViewer.Example.csproj", "{69EF9461-D518-457B-A354-B8A4407F80FF}"
66
EndProject

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Analogy.LogViewer.Interfaces.WinForms" Version="9.0.0-rc6" />
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
12-
<PackageReference Include="MSTest.TestAdapter" Version="3.8.3" />
13-
<PackageReference Include="MSTest.TestFramework" Version="3.8.3" />
10+
<PackageReference Include="Analogy.LogViewer.Interfaces.WinForms" Version="9.0.0" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
12+
<PackageReference Include="MSTest.TestAdapter" Version="4.0.2" />
13+
<PackageReference Include="MSTest.TestFramework" Version="4.0.2" />
1414
<PackageReference Include="coverlet.collector" Version="6.0.4">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

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

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2-
1+
<Project Sdk="Microsoft.NET.Sdk">
32
<PropertyGroup>
4-
<TargetFrameworks>net9.0-windows;net8.0-windows;net48</TargetFrameworks>
3+
<TargetFrameworks>net10.0-windows;net9.0-windows;net8.0-windows;net48</TargetFrameworks>
54
<VersionPrefix>9.0.0</VersionPrefix>
6-
<VersionSuffix>rc3</VersionSuffix>
5+
<VersionSuffix>rc5</VersionSuffix>
6+
<UseWindowsForms>true</UseWindowsForms>
77
<Authors>Lior Banai</Authors>
88
<Company>Analogy.LogViewer</Company>
99
<Product>Analogy.LogViewer.Example</Product>
@@ -20,11 +20,12 @@
2020
</PropertyGroup>
2121

2222
<ItemGroup>
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" />
27-
<PackageReference Include="System.Resources.Extensions" Version="9.0.10" />
23+
<PackageReference Include="Analogy.CommonUtilities" Version="9.0.1" />
24+
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="9.0.0" />
25+
<PackageReference Include="Analogy.LogViewer.Interfaces.WinForms" Version="9.0.0" />
26+
<PackageReference Include="Analogy.LogViewer.Template" Version="9.0.0" />
27+
<PackageReference Include="Analogy.LogViewer.Template.WinForms" Version="9.0.0-rc4" />
28+
<PackageReference Include="System.Resources.Extensions" Version="10.0.0" />
2829
</ItemGroup>
2930
<ItemGroup>
3031
<None Include="..\icon.png">

Analogy.LogViewer.Example/IAnalogy/ExampleAnalogyImages.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Analogy.LogViewer.Template.IAnalogy;
1+
using Analogy.LogViewer.Template.WinForms;
22

33
namespace Analogy.LogViewer.Example.IAnalogy
44
{

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;
22
using Analogy.Interfaces.WinForms;
3-
using Analogy.LogViewer.Template;
3+
using Analogy.LogViewer.Template.WinForms;
44
using System;
55
using System.Collections.Generic;
66

77
namespace Analogy.LogViewer.Example.IAnalogy
88
{
99
public class ExampleDataProviderFactory : DataProvidersFactoryWinForms
1010
{
11-
public override Guid FactoryId { get; set; } = PrimaryFactory.Id;
11+
public override Guid FactoryId { get; set; } = ExamplePrimaryFactory.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; } = 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/ExampleDownloadInformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Analogy.LogViewer.Example.IAnalogy
88
{
99
public class ExampleDownloadInformation : Template.AnalogyDownloadInformation
1010
{
11-
public override Guid FactoryId { get; set; } = PrimaryFactory.Id;
11+
public override Guid FactoryId { get; set; } = ExamplePrimaryFactory.Id;
1212
public override string Name { get; set; } = "Analogy Examples";
1313
public override bool IsUpdateAvailable { get; set; }
1414
public override string? DownloadURL { get; set; }

Analogy.LogViewer.Example/IAnalogy/ExamplePlotting.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class ExamplePlotting : IAnalogyPlotting
1313
public event EventHandler<AnalogyPlottingPointData> OnNewPointData;
1414
public event EventHandler<List<AnalogyPlottingPointData>>? OnNewPointsData;
1515
public Guid Id { get; set; } = new Guid("b8b4be8d-2cff-48ac-90f6-477d36271e84");
16-
public Guid FactoryId { get; set; } = PrimaryFactory.Id;
16+
public Guid FactoryId { get; set; } = ExamplePrimaryFactory.Id;
1717
public string Title { get; set; } = "Example real time plotting";
1818
private Timer simulateData;
1919
private int counter;

Analogy.LogViewer.Example/IAnalogy/PrimaryFactory.cs renamed to Analogy.LogViewer.Example/IAnalogy/ExamplePrimaryFactory.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
using Analogy.Interfaces;
22
using Analogy.Interfaces.DataTypes;
33
using Analogy.LogViewer.Example.Properties;
4+
using Analogy.LogViewer.Template.WinForms;
45
using System;
56
using System.Collections.Generic;
67
using System.Drawing;
78

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

Analogy.LogViewer.Example/IAnalogy/ExampleUserControl.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
1-
using Analogy.Interfaces;
2-
using Analogy.Interfaces.DataTypes;
3-
using Analogy.Interfaces.Factories;
4-
using Analogy.Interfaces.WinForms;
1+
using Analogy.Interfaces.WinForms;
52
using Analogy.Interfaces.WinForms.DataTypes;
63
using Analogy.Interfaces.WinForms.Factories;
74
using Microsoft.Extensions.Logging;
85
using System;
96
using System.Collections.Generic;
107
using System.Drawing;
11-
using System.Linq;
12-
using System.Text;
138
using System.Threading.Tasks;
149
using System.Windows.Forms;
1510

1611
namespace Analogy.LogViewer.Example.IAnalogy
1712
{
1813
public class ExampleUserControlFactory : IAnalogyCustomUserControlsFactoryWinForms
1914
{
20-
public Guid FactoryId { get; set; } = PrimaryFactory.Id;
15+
public Guid FactoryId { get; set; } = ExamplePrimaryFactory.Id;
2116
public string Title { get; set; } = "User Control Examples";
2217

2318
public IEnumerable<IAnalogyCustomUserControlWinForms> UserControls { get; } = new List<IAnalogyCustomUserControlWinForms>

0 commit comments

Comments
 (0)