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

Commit 9bce920

Browse files
committed
update nugets
1 parent a1ce028 commit 9bce920

File tree

6 files changed

+21
-12
lines changed

6 files changed

+21
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,3 +329,4 @@ ASALocalRun/
329329
# MFractors (Xamarin productivity tool) working folder
330330
.mfractor/
331331
/Analogy.LogViewer.RSSReader/nuget.exe
332+
/nuget.exe

Analogy.LogViewer.RSSReader/Analogy.LogViewer.RSSReader.nuspec renamed to Analogy.LogViewer.RSSReader.nuspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
<projectUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.RSSReader</projectUrl>
1111
<icon>AnalogyRSS.png</icon>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13-
<description>IIS Log Parser For Analogy Log Viewer</description>
14-
<releaseNotes>IIS Log Parser For Analogy Log Viewer</releaseNotes>
13+
<description>RSS Reader For Analogy Log Viewer</description>
14+
<releaseNotes>RSS Reader For Analogy Log Viewer</releaseNotes>
1515
<copyright>Copyright 2019 Lior Banai</copyright>
1616
<repository type="git" url="https://github.com/Analogy-LogViewer/Analogy.LogViewer.RSSReader"/>
1717
<tags></tags>
1818
<dependencies>
1919
<group targetFramework="net472">
20-
<dependency id="Analogy.LogViewer.Interfaces" version="2.1.5.1" />
21-
<dependency id="Analogy.DataProviders.Extensions" version="1.0.0.7"/>
20+
<dependency id="Analogy.LogViewer.Interfaces" version="2.1.6.1" />
21+
<dependency id="Analogy.DataProviders.Extensions" version="1.0.1"/>
2222
</group>
2323
</dependencies>
2424
</metadata>

Analogy.LogViewer.RSSReader/Analogy.LogViewer.RSSReader.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@
106106
</ItemGroup>
107107
<ItemGroup>
108108
<PackageReference Include="Analogy.DataProviders.Extensions">
109-
<Version>1.0.0.7</Version>
109+
<Version>1.0.1</Version>
110110
</PackageReference>
111111
<PackageReference Include="Analogy.LogViewer.Interfaces">
112-
<Version>2.1.5.1</Version>
112+
<Version>2.1.6.1</Version>
113113
</PackageReference>
114114
</ItemGroup>
115115
<ItemGroup>

Analogy.LogViewer.RSSReader/Core/RSSDataProvider.cs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,17 @@ public RSSDataProvider()
2626

2727
public class OnlineRSSReader : IAnalogyRealTimeDataProvider
2828
{
29+
public Task InitializeDataProviderAsync()
30+
{
31+
Featcher = new WebFetcher();
32+
return Task.CompletedTask;
33+
}
34+
35+
public void MessageOpened(AnalogyLogMessage message)
36+
{
37+
//nop
38+
}
39+
2940
public Guid ID { get; } = new Guid("01A17FA2-94F2-46A2-A80A-89AE4893C037");
3041
public string OptionalTitle { get; } = "Analogy RSS Reader";
3142
public IAnalogyOfflineDataProvider FileOperationsHandler { get; }
@@ -39,10 +50,7 @@ public class OnlineRSSReader : IAnalogyRealTimeDataProvider
3950
private Task FeatcherTask;
4051
private RSSFeedsContainer RSSContainer = ComponentsContainer.Instance.RSSFeedsContainer;
4152
private AppSettings Settings = ComponentsContainer.Instance.AppSettings;
42-
public void InitDataProvider()
43-
{
44-
Featcher = new WebFetcher();
45-
}
53+
4654
public void StartReceiving()
4755
{
4856
FeatcherTask = Task.Factory.StartNew(async () =>

Analogy.LogViewer.RSSReader/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.0.0.1")]
36+
[assembly: AssemblyFileVersion("1.0.0.1")]

Analogy.LogViewer.RSSReader/AnalogyRSS.png renamed to AnalogyRSS.png

File renamed without changes.

0 commit comments

Comments
 (0)