This repository was archived by the owner on May 31, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Analogy.LogViewer.VisualStudioActivityLog Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 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' " >
Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
3+ using System . Drawing ;
34using Analogy . Interfaces ;
45using Analogy . Interfaces . Factories ;
6+ using Analogy . LogViewer . VisualStudioActivityLog . Properties ;
57
68
79namespace 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" ;
You can’t perform that action at this time.
0 commit comments