Skip to content

Commit c8e2c7e

Browse files
committed
UI: Respect data storage location setting
1 parent c0e7d9f commit c8e2c7e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

UI/Program.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ public static int Main(string[] args)
5555

5656
if(!File.Exists(ConfigManager.GetConfigFile())) {
5757
//Could not find configuration file, show wizard
58-
ExtractNativeDependencies(ConfigManager.HomeFolder);
5958
App.ShowConfigWindow = true;
6059
BuildAvaloniaApp().StartWithClassicDesktopLifetime(args, ShutdownMode.OnMainWindowClose);
6160
if(File.Exists(ConfigManager.GetConfigFile())) {
@@ -68,9 +67,6 @@ public static int Main(string[] args)
6867
//Start loading config file in a separate thread
6968
Task.Run(() => ConfigManager.LoadConfig());
7069

71-
//Extract core dll & other native dependencies
72-
ExtractNativeDependencies(ConfigManager.HomeFolder);
73-
7470
if(CommandLineHelper.IsTestRunner(args)) {
7571
return TestRunner.Run(args);
7672
}

0 commit comments

Comments
 (0)