For debugging, output process path to console

This commit is contained in:
2026-02-17 09:38:35 +09:00
parent 6a6e3414f2
commit 96c5fb46b4
+1
View File
@@ -39,6 +39,7 @@ class MainViewModel : BaseViewModel, IFontResolver
public MainViewModel(IChangeViewModel viewModelChanger) : base(viewModelChanger) public MainViewModel(IChangeViewModel viewModelChanger) : base(viewModelChanger)
{ {
_processDir = Path.GetDirectoryName(Environment.ProcessPath) ?? ""; _processDir = Path.GetDirectoryName(Environment.ProcessPath) ?? "";
Console.WriteLine("Process is running from: {0}", _processDir);
_isCreatingPDF = false; _isCreatingPDF = false;
var quotes = Constants.GetQuotes(); var quotes = Constants.GetQuotes();
Random random = new Random(); Random random = new Random();