Skip to content

Commit c5ac440

Browse files
committed
resources more resources
1 parent 5f56cb4 commit c5ac440

22 files changed

Lines changed: 2107 additions & 263 deletions

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ Or Install via chocolatey
3333
Requirements
3434
- https://dotnet.microsoft.com/en-us/download/dotnet/8.0
3535
- .NET 8 (https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-8.0.13-windows-x64-installer or https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-8.0.13-windows-x86-installer)
36-
- ASP.NET Core Runtime (https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-8.0.13-windows-x64-installer, https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-8.0.13-windows-x86-installer or https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-8.0.13-windows-hosting-bundle-installer)
3736

3837
## CI
3938
This is a continous integration build. So always the latest and greates changes. It should be stable but no promises. Can be viewed as Beta.

build/Build.cs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ partial class Build : NukeBuild
3434
/// - JetBrains Rider https://nuke.build/rider
3535
/// - Microsoft VisualStudio https://nuke.build/visualstudio
3636
/// - Microsoft VSCode https://nuke.build/vscode
37-
public static int Main() => Execute<Build>(x => x.Test);
37+
public static int Main () => Execute<Build>(x => x.Test);
3838

3939
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
4040
readonly Configuration Configuration = IsLocalBuild ? Configuration.Debug : Configuration.Release;
@@ -78,7 +78,7 @@ Version Version
7878
patch = AppVeyor.Instance.BuildNumber;
7979
}
8080

81-
return new Version(1, 12, 0, patch);
81+
return new Version(1, 20, 0, patch);
8282
}
8383
}
8484

@@ -119,7 +119,7 @@ Version Version
119119
ChocolateyDirectory / $"logexpert.{VersionString}.nupkg"
120120
];
121121

122-
protected override void OnBuildInitialized()
122+
protected override void OnBuildInitialized ()
123123
{
124124
SetVariable("DOTNET_CLI_TELEMETRY_OPTOUT", "1");
125125

@@ -479,7 +479,7 @@ protected override void OnBuildInitialized()
479479
logExpertDocuments.DeleteDirectory();
480480
});
481481

482-
private void ExecuteInnoSetup(AbsolutePath innoPath)
482+
private void ExecuteInnoSetup (AbsolutePath innoPath)
483483
{
484484
Process proc = new();
485485

@@ -501,12 +501,12 @@ private void ExecuteInnoSetup(AbsolutePath innoPath)
501501
}
502502
}
503503

504-
private string ReplaceVersionMatch(Match match, string replacement)
504+
private string ReplaceVersionMatch (Match match, string replacement)
505505
{
506506
return $"{match.Groups[1]}{replacement}{match.Groups[3]}";
507507
}
508508

509-
private void TransformTemplateFile(AbsolutePath path, bool deleteTemplate)
509+
private void TransformTemplateFile (AbsolutePath path, bool deleteTemplate)
510510
{
511511
string text = path.ReadAllText();
512512
text = text.Replace("##version##", VersionString);
@@ -520,17 +520,17 @@ private void TransformTemplateFile(AbsolutePath path, bool deleteTemplate)
520520
}
521521

522522
[GeneratedRegex(@"(\[assembly: AssemblyInformationalVersion\("")([^""]*)(""\)\])")]
523-
private static partial Regex AssemblyInformationalVersion();
523+
private static partial Regex AssemblyInformationalVersion ();
524524

525525
[GeneratedRegex(@"(\[assembly: AssemblyVersion\("")([^""]*)(""\)\])")]
526-
private static partial Regex AssemblyVersion();
526+
private static partial Regex AssemblyVersion ();
527527

528528
[GeneratedRegex(@"(\[assembly: AssemblyConfiguration\()(""[^""]*"")(\)\])")]
529-
private static partial Regex AssemblyConfiguration();
529+
private static partial Regex AssemblyConfiguration ();
530530

531531
[GeneratedRegex(@"(\[assembly: AssemblyFileVersion\("")([^""]*)(""\)\])")]
532-
private static partial Regex AssemblyFileVersion();
532+
private static partial Regex AssemblyFileVersion ();
533533

534534
[GeneratedRegex(@"\w\w{2}[_]p?[tso]?[erzliasx]+[_rhe]{5}", RegexOptions.IgnoreCase, "en-GB")]
535-
private static partial Regex SFTPPlugin();
535+
private static partial Regex SFTPPlugin ();
536536
}

src/ColumnizerLib/ColumnizerLib.nuspec

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,18 @@
66
<title>LogExpert ColumnizerLib</title>
77
<authors>Zarunbal, Hagen Raab, Hirogen, RandallFlagg and others</authors>
88
<owners>Zarunbal, Hirogen</owners>
9-
<license>MIT</license>
10-
<projectUrl>https://github.com/LogExperts/LogExpert</projectUrl>
9+
<license type="MIT"></license>
10+
<projectUrl url="https://github.com/LogExperts/LogExpert">https://github.com/LogExperts/LogExpert</projectUrl>
11+
<repository type="git" url="https://github.com/LogExperts/LogExpert"></repository>
1112
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1213
<bugTrackerUrl>https://github.com/LogExperts/LogExpert/issues</bugTrackerUrl>
13-
<releaseNotes>https://github.com/LogExperts/LogExpert/releases/tag/v$version$</releaseNotes>
14+
<releaseNotes>https://github.com/LogExperts/LogExpert/releases/tag/v.$version$</releaseNotes>
1415
<description>Columnizer Lib for Logexpert plugins</description>
16+
<readme>docs\README.md</readme>
1517
<copyright>Copyright 2025</copyright>
1618
<tags>LogExpert Columnizer</tags>
1719
</metadata>
20+
<files>
21+
<file src="\..\..\README.md" target="docs\"></file>
22+
</files>
1823
</package>

src/Directory.Build.props

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,17 @@
1717
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1818
<!--<OutputPath>$(SolutionDir)..\bin\$(Configuration)</OutputPath>--><!--TODO: Normalize this across solution-->
1919
<SignAssembly>true</SignAssembly>
20+
<PackageProjectUrl>https://github.com/LogExperts/LogExpert</PackageProjectUrl>
21+
<RepositoryUrl>https://github.com/LogExperts/LogExpert</RepositoryUrl>
22+
<PackageTags>LogExpert, Columnizer, Logging, Windows, Winforms</PackageTags>
23+
<RepositoryType>git</RepositoryType>
24+
<PackageReleaseNotes>https://github.com/LogExperts/LogExpert/releases/tag/v.1.20.0</PackageReleaseNotes>
25+
<PackageVersion>1.20.0.0</PackageVersion>
2026
<Optimize Condition="'$(Configuration)' == 'Release'">true</Optimize>
2127
<Product>LogExpert</Product>
2228
<Copyright>Copyright © LogExpert 2025</Copyright>
29+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
30+
<PackageReadmeFile>README.md</PackageReadmeFile>
2331
<IsTestProject>false</IsTestProject>
2432
<UseWindowsForms>false</UseWindowsForms>
2533
<ImportWindowsDesktopTargets>false</ImportWindowsDesktopTargets>
@@ -49,6 +57,7 @@
4957
<ItemGroup Label="Links">
5058
<Compile Include="..\Solution Items\AssemblyInfo.cs" Link="Properties\SharedAssemblyInfo.cs" />
5159
<None Include="..\Solution Items\Key.snk" Link="Key.snk" />
60+
<None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="\" />
5261
</ItemGroup>
5362

5463
</Project>

src/JsonCompactColumnizer/JsonCompactColumnizer.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<ProjectReference Include="..\ColumnizerLib\ColumnizerLib.csproj" />
12-
<ProjectReference Include="..\JsonColumnizer\JsonColumnizer.csproj" />
11+
<PackageReference Include="Newtonsoft.Json" />
1312
</ItemGroup>
1413

1514
<ItemGroup>
16-
<PackageReference Include="Newtonsoft.Json" />
15+
<ProjectReference Include="..\ColumnizerLib\ColumnizerLib.csproj" />
16+
<ProjectReference Include="..\JsonColumnizer\JsonColumnizer.csproj" />
1717
</ItemGroup>
1818
</Project>

src/LogExpert.Core/EventArguments/GuiStateArgs.cs renamed to src/LogExpert.Core/EventArguments/GuiStateEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace LogExpert.Core.EventArguments;
44

5-
public class GuiStateArgs : System.EventArgs
5+
public class GuiStateEventArgs : EventArgs
66
{
77
#region Properties
88

0 commit comments

Comments
 (0)