Output Formatting and Release

This commit is contained in:
glax 2024-04-17 00:08:57 +02:00
parent 321f930733
commit 12b3d1fd02
2 changed files with 3 additions and 1 deletions

View File

@ -186,7 +186,7 @@ public class Blur
private void WindowManagerOnWindowsChanged(WindowInfo[] before, WindowInfo[] after)
{
string print = "Window changed\n";
string print = $"Window changed\n{"Z",-3} | {"hWnd",-8} | {"PID",-8} | {"Name",-17} | {"Window Title",-17} | {"State",-13} | BBox\n";
foreach (WindowInfo windowInfo in after)
print += $"{windowInfo}\n";
_logger?.LogInformation(print);

View File

@ -5,6 +5,8 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<AssemblyVersion>1.0</AssemblyVersion>
</PropertyGroup>
<ItemGroup>