-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
I created a Windows installer with Wix and I noticed that the software wasn't working. The reason being is that you can never work next to the exe, since that is located in the Program Files, which needs admin access and the software as launched it doesn't have that.
So, in AvalonStudio.Shell, the Extensions folder couldn't be created, thus the software failed to launch. The code below does this in AvalonStudio.
public static string ExecutionPath => Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
public static string ExtensionsFolder => Path.Combine(ExecutionPath, "Extensions");I suggest changing the second line to this:
public static string ExtensionsFolder => Path.Combine(BaseDirectory, "Extensions");Since I have no idea what that does, my question is: is it safe to change this? (I didn't test.)
Related issue: WalletWasabi/WalletWasabi#686
Metadata
Metadata
Assignees
Labels
No labels