diff --git a/ATxTray/AutoTxTray.cs b/ATxTray/AutoTxTray.cs
index 2a731b844ad41e02db380b6bf2bf6c99c0265ed2..091509b72982bdcdd1fc14b1812565353475513a 100644
--- a/ATxTray/AutoTxTray.cs
+++ b/ATxTray/AutoTxTray.cs
@@ -12,6 +12,8 @@ using NLog.Config;
 using NLog.Targets;
 using Timer = System.Timers.Timer;
 
+// ReSharper disable RedundantDefaultMemberInitializer
+
 namespace ATxTray
 {
     public class AutoTxTray : ApplicationContext
@@ -296,8 +298,8 @@ namespace ATxTray
             }
             catch (Exception ex) {
                 Log.Error("Showing the TaskDialog failed: {0}", ex.Message);
-                var res = MessageBox.Show($"{instructionText}\n{footerText}\n\n" +
-                                "Press [OK] to confirm selection.", caption,
+                var res = MessageBox.Show($@"{instructionText}\n{footerText}\n\n" +
+                                @"Press [OK] to confirm selection.", caption,
                     MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
                 if (res == DialogResult.OK)
                     SubmitDirForTransfer();