Skip to content

Commit 2142ef9

Browse files
committed
hashes for plugins
1 parent 987ea8d commit 2142ef9

52 files changed

Lines changed: 5279 additions & 1094 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build/_build.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@
1212
<ItemGroup>
1313
<PackageReference Include="chocolatey" Version="2.5.1" />
1414
<PackageReference Include="GitVersion.Core" Version="6.5.0" />
15-
<PackageReference Include="Microsoft.Build" Version="17.14.28" />
16-
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="17.14.28" />
17-
<PackageReference Include="NuGet.CommandLine" Version="6.14.0">
15+
<PackageReference Include="Microsoft.Build" Version="18.0.2" />
16+
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="18.0.2" />
17+
<PackageReference Include="NuGet.CommandLine" Version="7.0.0">
1818
<PrivateAssets>all</PrivateAssets>
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2020
</PackageReference>
21+
<PackageReference Include="NuGet.Versioning" Version="7.0.0" />
2122
<PackageReference Include="Nuke.Common" Version="9.0.4" />
2223
<PackageReference Include="Nuke.GitHub" Version="7.0.0" />
2324
<PackageReference Include="NUnit.ConsoleRunner" Version="3.20.2" />

src/AutoColumnizer/AutoColumnizer.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using LogExpert;
2-
31
using System;
42

3+
using LogExpert;
4+
55
namespace AutoColumnizer;
66

77
public class AutoColumnizer : ILogLineColumnizer
@@ -10,53 +10,53 @@ public class AutoColumnizer : ILogLineColumnizer
1010

1111
public string Text => GetName();
1212

13-
public bool IsTimeshiftImplemented()
13+
public bool IsTimeshiftImplemented ()
1414
{
1515
return true;
1616
}
1717

18-
public string GetName()
18+
public string GetName ()
1919
{
2020
return "Auto Columnizer";
2121
}
2222

23-
public string GetDescription()
23+
public string GetDescription ()
2424
{
2525
return "Automatically find the right columnizer for any file";
2626
}
2727

2828

29-
public int GetColumnCount()
29+
public int GetColumnCount ()
3030
{
3131
throw new NotImplementedException();
3232
}
3333

34-
public string[] GetColumnNames()
34+
public string[] GetColumnNames ()
3535
{
3636
throw new NotImplementedException();
3737
}
3838

39-
public IColumnizedLogLine SplitLine(ILogLineColumnizerCallback callback, ILogLine line)
39+
public IColumnizedLogLine SplitLine (ILogLineColumnizerCallback callback, ILogLine line)
4040
{
4141
throw new NotImplementedException();
4242
}
4343

44-
public void SetTimeOffset(int msecOffset)
44+
public void SetTimeOffset (int msecOffset)
4545
{
4646
throw new NotImplementedException();
4747
}
4848

49-
public int GetTimeOffset()
49+
public int GetTimeOffset ()
5050
{
5151
throw new NotImplementedException();
5252
}
5353

54-
public DateTime GetTimestamp(ILogLineColumnizerCallback callback, ILogLine line)
54+
public DateTime GetTimestamp (ILogLineColumnizerCallback callback, ILogLine line)
5555
{
5656
throw new NotImplementedException();
5757
}
5858

59-
public void PushValue(ILogLineColumnizerCallback callback, int column, string value, string oldValue)
59+
public void PushValue (ILogLineColumnizerCallback callback, int column, string value, string oldValue)
6060
{
6161
}
6262

src/ColumnizerLib/Column.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
using System;
22
using System.Collections.Generic;
33

4-
namespace LogExpert;
4+
using LogExpert;
5+
6+
namespace ColumnizerLib;
57

68
public class Column : IColumn
79
{

src/CsvColumnizer/CsvColumnizer.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
using System.Runtime.Versioning;
77
using System.Windows.Forms;
88

9+
using ColumnizerLib;
10+
911
using CsvHelper;
1012

1113
using LogExpert;

src/Directory.Packages.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
1515
<PackageVersion Include="NLog" Version="6.0.6" />
1616
<PackageVersion Include="NuGet.CommandLine" Version="6.14.0" />
17+
<PackageVersion Include="NuGet.Versioning" Version="7.0.0" />
1718
<PackageVersion Include="Nuke.Common" Version="9.0.4" />
1819
<PackageVersion Include="Nuke.GitHub" Version="7.0.0" />
1920
<PackageVersion Include="NUnit" Version="4.4.0" />

src/GlassfishColumnizer/GlassfishColumnizer.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
using System.Globalization;
33
using System.Linq;
44

5+
using ColumnizerLib;
6+
57
using LogExpert;
68

79
namespace GlassfishColumnizer;

src/JsonColumnizer/JsonColumnizer.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
5+
using ColumnizerLib;
6+
17
using LogExpert;
28

39
using Newtonsoft.Json;

src/JsonCompactColumnizer/JsonCompactColumnizer.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
1+
using ColumnizerLib;
42

53
using LogExpert;
64

src/Log4jXmlColumnizer/Log4jXmlColumnizer.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
using System.Runtime.Versioning;
88
using System.Windows.Forms;
99

10+
using ColumnizerLib;
11+
1012
using LogExpert;
1113

1214
using Newtonsoft.Json;

src/LogExpert.Core/Classes/Columnizer/ClfColumnizer.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
using System.Globalization;
22
using System.Text.RegularExpressions;
33

4+
using ColumnizerLib;
5+
46
namespace LogExpert.Core.Classes.Columnizer;
57

68
public class ClfColumnizer : ILogLineColumnizer

0 commit comments

Comments
 (0)