Skip to content

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
elachlan committed Nov 4, 2022
1 parent 496a47d commit 73f24cc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,10 +292,7 @@ public static string ExecutablePath
{
get
{
if (s_executablePath is null)
{
s_executablePath = Path.GetFullPath(PInvoke.GetModuleFileNameLongPath(default));
}
s_executablePath ??= Path.GetFullPath(PInvoke.GetModuleFileNameLongPath(default));

return s_executablePath;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
using System.Runtime.ExceptionServices;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;
using System.Text;
using System.Windows.Forms.Automation;
using System.Windows.Forms.Layout;
using Microsoft.Win32;
Expand Down

0 comments on commit 73f24cc

Please sign in to comment.