diff --git a/src/StructuredLogViewer/MainWindow.xaml b/src/StructuredLogViewer/MainWindow.xaml
index 983098f0..63f2824c 100644
--- a/src/StructuredLogViewer/MainWindow.xaml
+++ b/src/StructuredLogViewer/MainWindow.xaml
@@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:StructuredLogViewer"
- Title="{x:Static local:MainWindow.DefaultTitle}"
+ Title="{x:Static local:MainWindow.DefaultTitle}"
AllowDrop="True"
Background="{DynamicResource Theme_Background}"
UseLayoutRounding="True"
@@ -48,26 +48,41 @@
-
- Exception:
-
+
+ Exception:
+
+
+
diff --git a/src/StructuredLogViewer/MainWindow.xaml.cs b/src/StructuredLogViewer/MainWindow.xaml.cs
index 18f752b5..510091d2 100644
--- a/src/StructuredLogViewer/MainWindow.xaml.cs
+++ b/src/StructuredLogViewer/MainWindow.xaml.cs
@@ -1250,5 +1250,10 @@ private void UpdateExceptionVisibility()
exceptionPanel.Visibility = Visibility.Hidden;
}
}
+
+ private void LLMButton_Click(object sender, RoutedEventArgs e)
+ {
+ Process.Start(new ProcessStartInfo("https://github.com/JanKrivanek/MSBuildStructuredLog/releases") { UseShellExecute = true });
+ }
}
}