Skip to content
This repository has been archived by the owner on May 31, 2022. It is now read-only.

Commit

Permalink
update nugets
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Mar 23, 2021
1 parent 0a0f68d commit 6457e61
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Analogy.LogViewer.Interfaces">
<Version>2.11.0</Version>
<Version>2.12.1</Version>
</PackageReference>
<PackageReference Include="MSTest.TestAdapter">
<Version>2.2.3</Version>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Analogy.Interfaces;
using Analogy.Interfaces.DataTypes;
using System.Collections.Generic;

namespace Analogy.LogViewer.WhatsApp.UnitTests
Expand All @@ -20,6 +21,11 @@ public void AppendMessages(List<AnalogyLogMessage> messages, string dataSource)
this.messages.AddRange(messages);
}

public void ReportFileReadProgress(AnalogyFileReadProgress progress)
{
//noop
}

public bool ForceNoFileCaching { get; set; }
public bool DoNotAddToRecentHistory { get; set; }
}
Expand Down
8 changes: 4 additions & 4 deletions Analogy.LogViewer.WhatsApp/Analogy.LogViewer.WhatsApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon />
<StartupObject />
<Version>1.4.0.1</Version>
<Version>1.4.1</Version>
<AssemblyName>Analogy.LogViewer.WhatsApp</AssemblyName>
<RootNamespace>Analogy.LogViewer.WhatsApp</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Lior Banai © 2020</Copyright>
<Copyright>Lior Banai © 2020-2021</Copyright>
<PackageProjectUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.WhatsApp</PackageProjectUrl>
<RepositoryUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.WhatsApp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down Expand Up @@ -43,8 +43,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="2.11.0" />
<PackageReference Include="Analogy.LogViewer.Template" Version="1.8.1.3" />
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="2.12.1" />
<PackageReference Include="Analogy.LogViewer.Template" Version="1.8.3.1" />
<PackageReference Include="Microsoft.Build.Tasks.Git" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit 6457e61

Please sign in to comment.