Skip to content

Commit

Permalink
fix guid
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Mar 27, 2024
1 parent 2c8cce1 commit ce38ebd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Analogy.LogViewer.LiteDB/Analogy.LogViewer.LiteDB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>net8.0-windows;net7.0-windows;net6.0-windows;net48;net471</TargetFrameworks>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
<Authors>Lior Banai</Authors>
<Company>Analogy.LogViewer</Company>
<Product>Analogy.LogViewer.LiteDB</Product>
Expand Down
2 changes: 1 addition & 1 deletion Analogy.LogViewer.LiteDB/IAnalogy/LiteDBDataProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace Analogy.LogViewer.LiteDB.IAnalogy
{
public class LiteDBDataProvider : Template.OfflineDataProvider
{
public override Guid Id { get; set; } = new Guid("25b2b926-47f8-4f13-8db8-0803f8829eba");
public override Guid Id { get; set; } = new Guid("da3672d7-e16a-4bb2-a991-efaa3e2f7d3b");
public override Image? LargeImage { get; set; } = Resources.Analogy_image_32x32;
public override Image? SmallImage { get; set; } = Resources.Analogy_image_16x16;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Analogy.LogViewer.LiteDB.IAnalogy
public class LiteDBUserSettingsFactory : TemplateUserSettingsFactory
{
public override Guid FactoryId { get; set; } = PrimaryFactory.Id;
public override Guid Id { get; set; } = new Guid("113ebf43-3290-4fe3-82bc-5ccc79b67706");
public override Guid Id { get; set; } = new Guid("0a2df0d0-9223-4089-bb87-19a50a1793a2");
public override UserControl DataProviderSettings { get; set; }

Check warning on line 17 in Analogy.LogViewer.LiteDB/IAnalogy/LiteDBUserSettingsFactory.cs

View workflow job for this annotation

GitHub Actions / build (Release)

Non-nullable property 'DataProviderSettings' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.

Check warning on line 17 in Analogy.LogViewer.LiteDB/IAnalogy/LiteDBUserSettingsFactory.cs

View workflow job for this annotation

GitHub Actions / build (Release)

Non-nullable property 'DataProviderSettings' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.

Check warning on line 17 in Analogy.LogViewer.LiteDB/IAnalogy/LiteDBUserSettingsFactory.cs

View workflow job for this annotation

GitHub Actions / build (Debug)

Non-nullable property 'DataProviderSettings' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public override string Title { get; set; } = "LiteDB db User Settings";
public override Image? SmallImage { get; set; } = Resources.Analogy_image_16x16;
Expand Down
4 changes: 2 additions & 2 deletions Analogy.LogViewer.LiteDB/IAnalogy/PrimaryFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Analogy.LogViewer.LiteDB.IAnalogy
{
public class PrimaryFactory : Analogy.LogViewer.Template.PrimaryFactory
{
internal static readonly Guid Id = new Guid("092e0375-a44a-4067-9a50-b2cbbeaf9ce8");
internal static readonly Guid Id = new Guid("46147e9b-0f3d-410a-948e-f165af903f6a");
public override Guid FactoryId { get; set; } = Id;

public override string Title { get; set; } = "Analogy LiteDB";
Expand All @@ -17,7 +17,7 @@ public class PrimaryFactory : Analogy.LogViewer.Template.PrimaryFactory

public override IEnumerable<IAnalogyChangeLog> ChangeLog { get; set; } = new List<AnalogyChangeLog>
{
new AnalogyChangeLog("Initial version", AnalogChangeLogType.None, "Lior Banai", new DateTime(2023, 03, 03), ""),
new AnalogyChangeLog("Initial version", AnalogChangeLogType.None, "Lior Banai", new DateTime(2024, 03, 27), ""),
};
public override IEnumerable<string> Contributors { get; set; } = new List<string> { "Lior Banai" };
public override string About { get; set; } = "Analogy LiteDB Data Provider";
Expand Down

0 comments on commit ce38ebd

Please sign in to comment.