From 43942125c95387da04c5f498d5ba2f50fd4b83ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20P?= Date: Thu, 18 Jan 2024 09:50:07 +0100 Subject: [PATCH] Give some feedback after successful exec --- MainWindow.xaml.cs | 1 + Txt2Bib.csproj | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index a4c8fe1..7488684 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -89,6 +89,7 @@ namespace Txt2Bib private void GoBtn_Click(object sender, RoutedEventArgs e) { Execute(); + MessageBox.Show("File BibTeX generato correttamente.", "Success", MessageBoxButton.OK, MessageBoxImage.Information); } private void CopyDebug_Click(object sender, RoutedEventArgs e) diff --git a/Txt2Bib.csproj b/Txt2Bib.csproj index ef42879..83d74d7 100644 --- a/Txt2Bib.csproj +++ b/Txt2Bib.csproj @@ -5,7 +5,7 @@ net6.0-windows enable true - 0.1.4 + 0.1.5