예제 #1
0
 /// <summary>
 /// Load recent project files list.
 /// </summary>
 private void LoadRecent()
 {
     try
     {
         var path = System.IO.Path.Combine(_fileIO.GetAssemblyPath(null), _recentFileName);
         if (System.IO.File.Exists(path))
         {
             _editor?.OnLoadRecent(path);
         }
     }
     catch (Exception ex)
     {
         _log?.LogError($"{ex.Message}{Environment.NewLine}{ex.StackTrace}");
     }
 }