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

Commit 61d2cbb

Browse files
committed
update api
1 parent 38b5cf4 commit 61d2cbb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Analogy.LogViewer.VisualStudioActivityLog/Analogy.LogViewer.VisualStudioActivityLog.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2424
<PackageIcon>AnalogyVS.png</PackageIcon>
2525
<Description>Visual studio Activity log parser for Analogy Log Viewer</Description>
26-
<Version>1.0.6</Version>
26+
<Version>1.1.0</Version>
2727
<PackageReleaseNotes>Initial version</PackageReleaseNotes>
2828
</PropertyGroup>
2929
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

Analogy.LogViewer.VisualStudioActivityLog/IAnalogy/VSActivityLogFactory.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
using System;
22
using System.Collections.Generic;
3+
using System.Drawing;
34
using Analogy.Interfaces;
45
using Analogy.Interfaces.Factories;
6+
using Analogy.LogViewer.VisualStudioActivityLog.Properties;
57

68

79
namespace Analogy.LogViewer.VisualStudioActivityLog.IAnalogy
@@ -11,6 +13,8 @@ public class VSActivityLogFactory : IAnalogyFactory
1113
internal static Guid factory = new Guid("a437ad53-0ecc-49a7-9fc3-b2f60ad007e2");
1214
public Guid FactoryId { get; set; } = factory;
1315
public string Title { get; set; } = "VS Activity Log Parser";
16+
public Image SmallImage { get; set; } = Resources.AnalogyVS16x16;
17+
public Image LargeImage { get; set; } = Resources.AnalogyVS32x32;
1418
public IEnumerable<IAnalogyChangeLog> ChangeLog { get; set; } = VisualStudioActivityLog.ChangeLog.GetChangeLog();
1519
public IEnumerable<string> Contributors { get; set; } = new List<string> { "Lior Banai" };
1620
public string About { get; set; } = "VS Activity Log Parser";

0 commit comments

Comments
 (0)