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 Nov 30, 2019
1 parent a1ce028 commit 9bce920
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -329,3 +329,4 @@ ASALocalRun/
# MFractors (Xamarin productivity tool) working folder
.mfractor/
/Analogy.LogViewer.RSSReader/nuget.exe
/nuget.exe
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
<projectUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.RSSReader</projectUrl>
<icon>AnalogyRSS.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>IIS Log Parser For Analogy Log Viewer</description>
<releaseNotes>IIS Log Parser For Analogy Log Viewer</releaseNotes>
<description>RSS Reader For Analogy Log Viewer</description>
<releaseNotes>RSS Reader For Analogy Log Viewer</releaseNotes>
<copyright>Copyright 2019 Lior Banai</copyright>
<repository type="git" url="https://github.com/Analogy-LogViewer/Analogy.LogViewer.RSSReader"/>
<tags></tags>
<dependencies>
<group targetFramework="net472">
<dependency id="Analogy.LogViewer.Interfaces" version="2.1.5.1" />
<dependency id="Analogy.DataProviders.Extensions" version="1.0.0.7"/>
<dependency id="Analogy.LogViewer.Interfaces" version="2.1.6.1" />
<dependency id="Analogy.DataProviders.Extensions" version="1.0.1"/>
</group>
</dependencies>
</metadata>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Analogy.DataProviders.Extensions">
<Version>1.0.0.7</Version>
<Version>1.0.1</Version>
</PackageReference>
<PackageReference Include="Analogy.LogViewer.Interfaces">
<Version>2.1.5.1</Version>
<Version>2.1.6.1</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
Expand Down
16 changes: 12 additions & 4 deletions Analogy.LogViewer.RSSReader/Core/RSSDataProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ public RSSDataProvider()

public class OnlineRSSReader : IAnalogyRealTimeDataProvider
{
public Task InitializeDataProviderAsync()
{
Featcher = new WebFetcher();
return Task.CompletedTask;
}

public void MessageOpened(AnalogyLogMessage message)
{
//nop
}

public Guid ID { get; } = new Guid("01A17FA2-94F2-46A2-A80A-89AE4893C037");
public string OptionalTitle { get; } = "Analogy RSS Reader";
public IAnalogyOfflineDataProvider FileOperationsHandler { get; }
Expand All @@ -39,10 +50,7 @@ public class OnlineRSSReader : IAnalogyRealTimeDataProvider
private Task FeatcherTask;
private RSSFeedsContainer RSSContainer = ComponentsContainer.Instance.RSSFeedsContainer;
private AppSettings Settings = ComponentsContainer.Instance.AppSettings;
public void InitDataProvider()
{
Featcher = new WebFetcher();
}

public void StartReceiving()
{
FeatcherTask = Task.Factory.StartNew(async () =>
Expand Down
4 changes: 2 additions & 2 deletions Analogy.LogViewer.RSSReader/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
File renamed without changes

0 comments on commit 9bce920

Please sign in to comment.