Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/LogExpert.sln
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "setup", "setup", "{C625E7C2
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RegexColumnizer.UnitTests", "RegexColumnizer.UnitTests\RegexColumnizer.UnitTests.csproj", "{FBFB598D-B94A-4AD3-A355-0D5A618CEEE3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LogexpertgRPCService", "LogexpertgRPCService\LogexpertgRPCService.csproj", "{D31D1721-9DEA-45A4-B813-D5023B2EC2CC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LogExpert.Core", "Logexpert.Core\LogExpert.Core.csproj", "{F49C6738-3F62-4890-8FF2-1F53A0F0A2CD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LogExpert.Resources", "Logexpert.Resources\LogExpert.Resources.csproj", "{578CC5D5-1DCD-47C2-8BD3-B32C14635BEC}"
Expand Down Expand Up @@ -138,10 +136,6 @@ Global
{FBFB598D-B94A-4AD3-A355-0D5A618CEEE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FBFB598D-B94A-4AD3-A355-0D5A618CEEE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FBFB598D-B94A-4AD3-A355-0D5A618CEEE3}.Release|Any CPU.Build.0 = Release|Any CPU
{D31D1721-9DEA-45A4-B813-D5023B2EC2CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D31D1721-9DEA-45A4-B813-D5023B2EC2CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D31D1721-9DEA-45A4-B813-D5023B2EC2CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D31D1721-9DEA-45A4-B813-D5023B2EC2CC}.Release|Any CPU.Build.0 = Release|Any CPU
{F49C6738-3F62-4890-8FF2-1F53A0F0A2CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F49C6738-3F62-4890-8FF2-1F53A0F0A2CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F49C6738-3F62-4890-8FF2-1F53A0F0A2CD}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
6 changes: 3 additions & 3 deletions src/LogExpert/Classes/LogExpertApplicationContext.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Windows.Forms;
using LogExpert.Controls.LogTabWindow;

using LogExpert.Controls.LogTabWindow;
using System;
using System.Windows.Forms;

namespace LogExpert.Classes
{
Expand Down
7 changes: 3 additions & 4 deletions src/LogExpert/Classes/LogExpertProxy.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using LogExpert.Controls.LogTabWindow;
using LogExpert.Grpc;
using LogExpert.Interface;

using NLog;
Expand All @@ -10,11 +9,11 @@

namespace LogExpert.Classes
{
internal class LogExpertProxy : LogExpertService.LogExpertServiceBase, ILogExpertProxy
internal class LogExpertProxy : ILogExpertProxy
{
#region Fields

private static readonly ILogger _logger = LogManager.GetCurrentClassLogger();
private static readonly Logger _logger = LogManager.GetCurrentClassLogger();

[NonSerialized] private readonly List<LogTabWindow> _windowList = [];

Expand Down Expand Up @@ -113,7 +112,7 @@ public void NewWindowOrLockedWindow(string[] fileNames)
public void NewWindowWorker(string[] fileNames)
{
_logger.Info("Creating new LogTabWindow");
LogTabWindow logWin = new(fileNames.Length > 0 ? fileNames : null, _logWindowIndex++, true)
LogTabWindow logWin = new(fileNames?.Length > 0 ? fileNames : null, _logWindowIndex++, true)
{
LogExpertProxy = this
};
Expand Down
5 changes: 0 additions & 5 deletions src/LogExpert/LogExpert.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,13 @@
<ItemGroup>
<PackageReference Include="DockPanelSuite" />
<PackageReference Include="DockPanelSuite.ThemeVS2015" />
<PackageReference Include="Grpc.AspNetCore" />
<PackageReference Include="Google.Protobuf" />
<PackageReference Include="Grpc.Core" />
<PackageReference Include="Grpc.Tools" PrivateAssets="All" />
<PackageReference Include="System.Text.Encoding" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="NLog" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ColumnizerLib\ColumnizerLib.csproj" />
<ProjectReference Include="..\Logexpert.UI\LogExpert.UI.csproj" />
<ProjectReference Include="..\LogexpertgRPCService\LogexpertgRPCService.csproj" />
<ProjectReference Include="..\PluginRegistry\LogExpert.PluginRegistry.csproj" />
</ItemGroup>
<ItemGroup>
Expand Down
Loading
Loading